Skip to content

Commit

Permalink
fixed help message
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Pirogov committed Oct 24, 2016
1 parent 5b1cec1 commit 1e78fd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/args.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ static char const usage[] = PROGNAME
" " VERSION " (" BUILD_INFO ")\n" DESCRIPTION "\n" COPYRIGHT "\n"
"Usage: " PROGNAME " [OPTIONS] FILE\n"
"OPTIONS:\n"
"\t-h: print this help message and exit\n"
"\t-w NUM: size of sliding window (default: whole sequence length)\n"
"\t-k NUM: interval between sliding windows (default: w/10)\n"

"\t-i: use index file instead of FASTA sequence file\n"
"\t-s: output index file for further processing (no regular result)\n"
"\t-l: list sequences stored in index file\n"
"\t-r FILE: file that contains a list of regions to process\n"
"\t-r FILE: rename sequences in index file to names provided in FILE\n"
"\t-n IDX:FROM-TO: calculate for given sequence and region within file\n"
"\t (defaults: IDX=0, FROM=0, TO=end of whole sequence. valid syntax: IDX | IDX:FROM-TO)\n"
"\t-f FILE: file that contains a list of regions to process\n"
"\t (syntax like for -n with one triple per line, not usable with -w)\n"

"\t-p: print match factors\n"
"\t-b: print benchmarking information\n"
"\t-g: output to plot with dnalc_plot.sh (gnuplot wrapper)\n";
"\t-g: output to plot with dnalc_plot.sh (gnuplot wrapper)\n"
"\t-h: print this help message and exit\n";

size_t stol_or_fail(string s) {
size_t n;
Expand Down

0 comments on commit 1e78fd2

Please sign in to comment.