Skip to content

Commit 72ee103

Browse files
committed
Small changes in help screen.
1 parent a803f9e commit 72ee103

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/mapper/whisper.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,18 @@ void usage()
7474
// cerr << " -o <value> - approximate amount of RAM in GB (default: " << cmd_params.max_total_memory << "; must be at least equal no. threads, but not less than 8)\n";
7575
cerr << " -out <name> - name of the output file (default: " << cmd_params.project_name << ")\n";
7676
cerr << " -penalty-saturation <value> - no. of sigmas for max. penalty in matching pairs (default: " << cmd_params.penalty_saturation_sigmas << ")\n";
77-
cerr << " -rg <read_group> - complete read group header line, ’\t’ character will be converted to a TAB in the output SAM while the read group ID will be attached to every read (example line: ’@RG\tID:foo\tSM:bar’)\n";
78-
cerr << " -r[s|p] - single or paired-end reads (default: " << (cmd_params.paired_reads ? "paired" : "single") << ")\n";
77+
cerr << " -rg <read_group> - complete read group header line, (example: '@RG\\tID:foo\\tSM:bar')\n"
78+
" '\\t' character will be converted to a TAB in the output SAM/BAM,\n"
79+
" while the read group ID will be attached to every read \n";
80+
cerr << " -r[s|p] - single or paired-end reads <value> (default: " << (cmd_params.paired_reads ? "paired" : "single") << ")\n";
7981
cerr << " -score-discretization-threshold (default: " << cmd_params.score_discretization_threshold << ")\n";
8082
cerr << " -score-match <value> - score for matching symbol (default: " << cmd_params.match_score << ")\n";
8183
cerr << " -score-clipping <value> score for clipping (default: " << cmd_params.clipping_score << ")\n";
8284
cerr << " -score-mismatch <value> - score for mismatching symbol (default: " << cmd_params.mismatch_score << ")\n";
8385
cerr << " -sens <value> - turn on/off sensitive mode (default: " << (bool) cmd_params.sensitive_mode << ")\n";
8486
cerr << " -sens-factor <value> - sensitivity factor (default: " << cmd_params.sensitivity_factor << ")\n";
85-
cerr << " -stdout - use stdout to store the output (default: " << cmd_params.use_stdout << ")\n";
86-
cerr << " -store-BAM - turn on saving in BAM (default: " << (bool)cmd_params.store_BAM << ")\n";
87+
cerr << " -stdout - use stdout to store the output\n";
88+
cerr << " -store-BAM - turn on saving in BAM\n";
8789
cerr << " -t <value> - no. of threads (0-adjust to hardware) (default: " << cmd_params.no_threads << ")\n";
8890
cerr << " -temp <name> - prefix for temporary files (default: " << cmd_params.temp_prefix << ")\n";
8991
cerr << " -x - load complete suffix arrays in main memory (default: " << cmd_params.sa_in_ram << ")\n";

0 commit comments

Comments
 (0)