Skip to content

Commit

Permalink
added some keyword arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
rnmitchell committed Aug 16, 2024
1 parent 5067ccd commit 39754f7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion lusSTR/cli/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def show_STR_page():

custom_ranges = st.checkbox(
"Use Custom Sequence Ranges",
help="Check the box to use the specified custom sequence ranges as defined in the str_markers.json file."
help="Check the box to use the specified custom sequence ranges as defined in the str_markers.json file.",
)

sex = st.checkbox(
Expand Down
36 changes: 18 additions & 18 deletions lusSTR/wrappers/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,12 +450,12 @@ def process_input(
profile_type,
data_type,
output_type,
strand,
nofiltering,
separate,
custom,
sex,
info,
strand="forward",
nofiltering=False,
separate=False,
custom=False,
sex=False,
info=True,
):
full_df = pd.read_csv(f"{input_name}.txt", sep="\t")
if custom:
Expand Down Expand Up @@ -524,12 +524,12 @@ def main(
profile_type,
data_type,
output_type,
strand,
nofilters,
separate,
custom,
sex,
info,
strand=strand,
nofiltering=nofilters,
separate=separate,
custom=custom,
sex=sex,
info=info,
)
input_name = os.path.splitext(input)[0]
outpath = output_dir
Expand All @@ -539,12 +539,12 @@ def main(
profile_type,
data_type,
output_type,
strand,
nofilters,
separate,
custom,
sex,
info,
strand=strand,
nofiltering=nofilters,
separate=separate,
custom=custom,
sex=sex,
info=info,
)


Expand Down

0 comments on commit 39754f7

Please sign in to comment.