Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Normalize some command line help #1999

Merged
merged 1 commit into from
Jul 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/micro_razers/micro_razers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ int main(int argc, const char *argv[])


ArgumentParser parser("micro_razers");
setShortDescription(parser, "Map small RNA reads possibly containing 3' adapter sequence");
addUsageLine(parser, "[\\fIOPTIONS\\fP] <\\fIGENOME FILE\\fP> <\\fIREADS FILE\\fP>");
addDescription(parser, "MicroRazerS uses a prefix-based mapping strategy to map "
"small RNA reads possibly containing 3' adapter sequence. ");
Expand Down
2 changes: 1 addition & 1 deletion apps/sgip/sgip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ template <typename TParser>
void _setupParser(TParser & parser)
{
setVersion(parser, SEQAN_APP_VERSION " [" SEQAN_REVISION "]");
addDescription(parser, " SGIP - Solution of Graph Isomorphism Problem");
setShortDescription(parser, "Solution of Graph Isomorphism Problem");
addUsageLine(parser, "-o <original graph> [Option]");
addSection(parser, "Mandatory Options");
addOption(parser, ArgParseOption("o", "original", "File containing original graph", ArgParseArgument::INPUT_FILE,"IN"));
Expand Down
1 change: 1 addition & 0 deletions apps/splazers/splazers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ int main(int argc, const char *argv[])
#ifdef RAZERS_MATEPAIRS
addUsageLine(parser, "[\\fIOPTIONS\\fP] <\\fIGENOME FILE\\fP> <\\fIREADS FILE 1\\fP> <\\fIREADS FILE 2\\fP>");
#endif
setShortDescription(parser, "Split-map read sequences");
addDescription(parser,
"SplazerS uses a prefix-suffix mapping strategy to split-map read sequences."
"If a SAM file of mapped reads is given as input, all unmapped but anchored"
Expand Down