From 30f7640fe17fd213353ff14a8d3612e5b42379fa Mon Sep 17 00:00:00 2001 From: Leandro Ishi Date: Tue, 12 Dec 2023 15:07:56 +0000 Subject: [PATCH] fix: fix a typo in --no-gene-coverage-filtering CLI help --- src/compare_main.cpp | 2 +- src/denovo_discovery/discover_main.cpp | 2 +- src/map_main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compare_main.cpp b/src/compare_main.cpp index 28c652b9..95b7b882 100644 --- a/src/compare_main.cpp +++ b/src/compare_main.cpp @@ -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"); diff --git a/src/denovo_discovery/discover_main.cpp b/src/denovo_discovery/discover_main.cpp index 2c43d903..c6d5cec9 100644 --- a/src/denovo_discovery/discover_main.cpp +++ b/src/denovo_discovery/discover_main.cpp @@ -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"); diff --git a/src/map_main.cpp b/src/map_main.cpp index df3a23f0..258b7b40 100644 --- a/src/map_main.cpp +++ b/src/map_main.cpp @@ -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");