Skip to content

Commit

Permalink
fix: fix a typo in --no-gene-coverage-filtering CLI help
Browse files Browse the repository at this point in the history
  • Loading branch information
leoisl committed Dec 12, 2023
1 parent cb21a92 commit 30f7640
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/compare_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void setup_compare_subcommand(CLI::App& app)
compare_subcmd
->add_flag(
"--no-gene-coverage-filtering", opt->no_gene_coverage_filtering,
"Do not filter genes based on their coverage, effectively ignoring the three"
"Do not filter genes based on their coverage, effectively ignoring the three "
"previous params. This is useful if you are not using read datasets.")
->group("Filtering");

Expand Down
2 changes: 1 addition & 1 deletion src/denovo_discovery/discover_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ void setup_discover_subcommand(CLI::App& app)
discover_subcmd
->add_flag(
"--no-gene-coverage-filtering", opt->no_gene_coverage_filtering,
"Do not filter genes based on their coverage, effectively ignoring the three"
"Do not filter genes based on their coverage, effectively ignoring the three "
"previous params. This is useful if you are not using read datasets.")
->group("Filtering");

Expand Down
2 changes: 1 addition & 1 deletion src/map_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ void setup_map_subcommand(CLI::App& app)
map_subcmd
->add_flag(
"--no-gene-coverage-filtering", opt->no_gene_coverage_filtering,
"Do not filter genes based on their coverage, effectively ignoring the three"
"Do not filter genes based on their coverage, effectively ignoring the three "
"previous params. This is useful if you are not using read datasets.")
->group("Filtering");

Expand Down

0 comments on commit 30f7640

Please sign in to comment.