Skip to content
Snippets Groups Projects
Commit 59f2c15f authored by Bartosz Bartmanski's avatar Bartosz Bartmanski
Browse files

Added help messages for match type and filter threshold

parent 3602a940
No related branches found
No related tags found
No related merge requests found
......@@ -135,9 +135,29 @@ def convert_df(df, **kwargs):
def show_results():
inserts_all = st.session_state.pipeline
insert_type = st.selectbox("Insert type:", ["both", "matched", "unmatched"])
filter_threshold = st.slider("Filter threshold:", 0.0, 1.0, 0.7)
insert_type = st.selectbox(
"Insert type:",
["both", "matched", "unmatched"],
help=(
"There are two types of inserts: matched and unmatched. Matched are when "
"both forward and reverse sequences could be matched to one another. "
"Unmatched are cases when either forward or reverse sequence could not be "
"matched to the corresponding one."
),
)
filter_threshold = st.slider(
"Filter threshold:",
min_value=0.0,
max_value=1.0,
value=0.7,
help=(
"Threshold value for insert coverage value. Insert coverage here is the "
"ratio of length of sequence mapped to genome to the length of the whole "
"sequence."
),
)
buffer = st.slider(
"View window size:",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment