Skip to content

Commit

Permalink
enh: cleanup main CLI options
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jul 23, 2024
1 parent 467a34b commit 58c15eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chipstream/cli/cli_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
@click.option("-b", "--background-method",
type=click.Choice(sorted(cm.bg_methods.keys()),
case_sensitive=False),
default="sparsemed",
default="sparsemed", show_default=True,
help="Background computation method to use.")
@click.option("-kb", "background_kwargs",
multiple=True,
Expand All @@ -76,7 +76,7 @@
@click.option("-s", "--segmentation-method",
type=click.Choice(sorted(cm.seg_methods.keys()),
case_sensitive=False),
default="thresh",
default="thresh", show_default=True,
help="Segmentation method to use.")
@click.option("-ks", "segmentation_kwargs",
multiple=True,
Expand Down Expand Up @@ -104,7 +104,7 @@
"You can also specify a step size (e.g. '5000-7000-2' for "
"every second event). The convention follows Python slices "
"with 'n' substituting for 'None'.")
@click.option("--drain-basins", type=str, is_flag=True,
@click.option("--drain-basins", is_flag=True,
help="Write all basin features from input to output file. This "
"option trades computation time and small file size for "
"an output file that contains all available features.")
Expand Down

0 comments on commit 58c15eb

Please sign in to comment.