Skip to content

Commit 29e0fa1

Browse files
committed
Add the default values in the help message for options:
-l, --read-length [-1] -g, --cov-threshold [0]
1 parent ae1f9d8 commit 29e0fa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stats.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1953,7 +1953,7 @@ static void error(const char *format, ...)
19531953
printf(" -h, --help This help message\n");
19541954
printf(" -i, --insert-size <int> Maximum insert size [8000]\n");
19551955
printf(" -I, --id <string> Include only listed read group or sample name\n");
1956-
printf(" -l, --read-length <int> Include in the statistics only reads with the given read length []\n");
1956+
printf(" -l, --read-length <int> Include in the statistics only reads with the given read length [-1]\n");
19571957
printf(" -m, --most-inserts <float> Report only the main part of inserts [0.99]\n");
19581958
printf(" -P, --split-prefix <str> Path or string prefix for filepaths output by -S (default is input filename)\n");
19591959
printf(" -q, --trim-quality <int> The BWA trimming parameter [0]\n");
@@ -1963,7 +1963,7 @@ static void error(const char *format, ...)
19631963
printf(" -t, --target-regions <file> Do stats in these regions only. Tab-delimited file chr,from,to, 1-based, inclusive.\n");
19641964
printf(" -x, --sparse Suppress outputting IS rows where there are no insertions.\n");
19651965
printf(" -p, --remove-overlaps Remove overlaps of paired-end reads from coverage and base count computations.\n");
1966-
printf(" -g, --cov-threshold Only bases with coverage above this value will be included in the target percentage computation.\n");
1966+
printf(" -g, --cov-threshold Only bases with coverage above this value will be included in the target percentage computation [0]\n");
19671967
sam_global_opt_help(stdout, "-.--.@");
19681968
printf("\n");
19691969
}

0 commit comments

Comments
 (0)