Skip to content

Commit e646f63

Browse files
authored
Merge pull request #4694 from vgteam/helptext-fix
Helptext fix
2 parents 0f8c8f2 + ef745d3 commit e646f63

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/subcommand/filter_main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void help_filter(char** argv) {
6060
<< " -V, --no-output print out -v statistics and do not write the GAM" << endl
6161
<< " -T, --tsv-out FIELD[;FIELD] write TSV of given fields instead of filtered GAM" << endl
6262
<< " See wiki page:" << endl
63-
<< " \"Getting alignment statistics with ‐‐tsv‐out\"" << endl
63+
<< " \"Getting alignment statistics with vg filter\"" << endl
6464
<< " -q, --min-mapq N drop alignments with mapping quality < N" << endl
6565
<< " -E, --repeat-ends N drop reads with tandem repeat (motif size <= 2N," << endl
6666
<< " spanning >= N bases) at either end" << endl
@@ -576,5 +576,5 @@ int main_filter(int argc, char** argv) {
576576
}
577577

578578
// Register subcommand
579-
static Subcommand vg_filter("filter", "filter reads", main_filter);
579+
static Subcommand vg_filter("filter", "filter reads and get statistics by read", main_filter);
580580

src/subcommand/gamsort_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,4 @@ int main_gamsort(int argc, char **argv)
206206
return 0;
207207
}
208208

209-
static Subcommand vg_gamsort("gamsort", "sort a GAM/GAF file or index a sorted GAM file.", main_gamsort);
209+
static Subcommand vg_gamsort("gamsort", "sort a GAM/GAF file or index a sorted GAM file", main_gamsort);

src/subcommand/genotype_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,4 +366,4 @@ int main_genotype(int argc, char** argv) {
366366
}
367367

368368

369-
static Subcommand vg_genotype("genotype", "genotype (or type) graphs, GAMS, and VCFs.", main_genotype);
369+
static Subcommand vg_genotype("genotype", "genotype (or type) graphs, GAMS, and VCFs", main_genotype);

src/subcommand/giraffe_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2502,4 +2502,4 @@ std::string sample_haplotypes(
25022502
//----------------------------------------------------------------------------
25032503

25042504
// Register subcommand
2505-
static Subcommand vg_giraffe("giraffe", "fast haplotype-aware short read alignment", PIPELINE, 6, main_giraffe);
2505+
static Subcommand vg_giraffe("giraffe", "fast haplotype-aware read alignment", PIPELINE, 6, main_giraffe);

src/subcommand/surject_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void help_surject(char** argv) {
5858
<< " -T, --max-tail-len N only align up to N bases of read tails [10000]" << endl
5959
<< " -g, --max-graph-scale X make reads unmapped if alignment target subgraph" << endl
6060
<< " size exceeds read length by a factor of X " << endl
61-
<< "(default: " << Surjector::DEFAULT_SUBGRAPH_LIMIT
61+
<< " (default: " << Surjector::DEFAULT_SUBGRAPH_LIMIT
6262
<< " or " << Surjector::SPLICED_DEFAULT_SUBGRAPH_LIMIT << " with -S)" << endl
6363
<< " -P, --prune-low-cplx prune short/low complexity anchors in realignment" << endl
6464
<< " -I, --max-slide N look for offset duplicates of anchors up to N bp" << endl

0 commit comments

Comments
 (0)