X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=chopseqscommand.h;h=e73714d2e98406da2a05e54bb34f61398bd0143c;hb=2bb9267aa4b4ecdf8488b06605cc9f3f36fa4332;hp=dbf4d23b71ebc1302672e66bc65472331117713f;hpb=8f909cf6870cc2e4d8ed8cff69a203f6f83a160b;p=mothur.git diff --git a/chopseqscommand.h b/chopseqscommand.h index dbf4d23..e73714d 100644 --- a/chopseqscommand.h +++ b/chopseqscommand.h @@ -21,23 +21,24 @@ class ChopSeqsCommand : public Command { ChopSeqsCommand(string); ChopSeqsCommand(); ~ChopSeqsCommand(){}; - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } - int execute(); - void help(); - + + vector setParameters(); + string getCommandName() { return "chop.seqs"; } + string getCommandCategory() { return "Sequence Processing"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Chops.seqs"; } + string getDescription() { return "trim sequence length"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: string fastafile, outputDir, keep; bool abort, countGaps, Short; int numbases; vector outputNames; - map > outputTypes; string getChopped(Sequence); - - }; #endif