Skip to content

Commit

Permalink
fix filterdict default
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarcsj committed Aug 12, 2024
1 parent 99fb656 commit 2fbbc9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion directlfq/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def gui():
@click.option("--filename_suffix", "-fs", type=str, default="", help="A suffix to add to the output file name.")
@click.option("--num_cores", "-nc", type = int, default = None, help="The number of cores to use (default is to use multiprocessing).")
@click.option("--deactivate_normalization", "-dn", type = bool, default = False, help="If you want to deactivate the normalization step, you can set this flag to True.")
@click.option("--filter_dict", "-dn", type = bool, default = False, help="In case you want to define specific filters in addition to the standard filters, you can add a yaml file where the filters are defined (see GitHub docu for example).")
@click.option("--filter_dict", "-fd", type = str, default = None, help="In case you want to define specific filters in addition to the standard filters, you can add a yaml file where the filters are defined (see GitHub docu for example).")

def run_directlfq(**kwargs):
print("starting directLFQ")
Expand Down

0 comments on commit 2fbbc9d

Please sign in to comment.