Skip to content
Snippets Groups Projects
Commit d3587987 authored by nkindlon's avatar nkindlon
Browse files

Fixed map and merge help messages.

parent 2ae5c07a
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,10 @@ void map_help(void) {
cerr << "Options: " << endl;
cerr << "\t-c\t" << "Specify columns from the B file to map onto intervals in A." << endl;
cerr << "\t\tDefault: 5." << endl;
cerr << "\t\tMultiple columns can be specified in a comma-delimited list." << endl << endl;
KeyListOpsHelp();
......
......@@ -66,6 +66,9 @@ void merge_help(void) {
cerr << "\t\t- Note: negative values enforce the number of b.p. required for overlap." << endl << endl;
cerr << "\t-header\t" << "Print the header from the A file prior to results." << endl << endl;
cerr << "\t-c\t" << "Specify columns from the input file to operate upon (see -o option, below)." << endl;
cerr << "\t\tMultiple columns can be specified in a comma-delimited list." << endl << endl;
KeyListOpsHelp();
cerr << "Notes: " << endl;
cerr << "\t(1) All output, regardless of input type (e.g., GFF or VCF)" << endl;
......
......@@ -376,9 +376,6 @@ const QuickString & KeyListOps::getOpVals(RecordKeyList &hits)
}
void KeyListOpsHelp() {
cerr << "\t-c\t" << "Specify columns from the B file to map onto intervals in A." << endl;
cerr << "\t\tDefault: 5." << endl;
cerr << "\t\tMultiple columns can be specified in a comma-delimited list." << endl << endl;
cerr << "\t-o\t" << "Specify the operation that should be applied to -c." << endl;
cerr << "\t\tValid operations:" << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment