Skip to content

Commit

Permalink
update help text
Browse files Browse the repository at this point in the history
  • Loading branch information
LKremer committed Oct 7, 2024
1 parent 79535cc commit 5f27a60
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions methscan/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,8 @@ def smooth_cli(**kwargs):
show_default=True,
type=click.FloatRange(min=0, max=1),
metavar="FLOAT",
help="The variance threshold, i.e. 0.02 means that the top 2% "
"most variable genomic bins will be reported. Overlapping variable bins "
"are merged.",
help="The variance threshold, i.e. 0.02 means that the top 2% most variable "
"genomic bins will be merged and reported as VMRs.",
)
@click.option(
"--min-cells",
Expand Down Expand Up @@ -489,9 +488,9 @@ def scan_cli(**kwargs):
show_default=True,
type=click.FloatRange(min=0, max=1),
metavar="FLOAT",
help="The t-statistic threshold, i.e. 0.02 means that the top 2% "
"most differentially methylated genomic bins will be reported. "
"Overlapping bins are merged.",
help="The t-statistic threshold, i.e. 0.02 means that the top 2% and "
"bottom 2% most differentially methylated genomic bins will be separately "
"merged and reported as DMRs with adjusted p-values."
)
@click.option(
"--min-cells",
Expand All @@ -508,8 +507,8 @@ def scan_cli(**kwargs):
default=0,
type=click.IntRange(min=0),
metavar="INTEGER",
help="Merge neighboring VMRs if they are within this distance in basepairs. Useful "
"to prevent fragmented VMRs separated only by small gaps. [default: off]",
help="Merge neighboring DMRs if they are within this distance in basepairs. Useful "
"to prevent fragmented DMRs separated only by small gaps. [default: off]",
)
@click.option(
"--threads",
Expand Down

0 comments on commit 5f27a60

Please sign in to comment.