X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=chopseqscommand.h;h=cc22c751483a75f246f69e4955985f158d041638;hb=f687723a8357916e86a05116978e6869b039ce36;hp=604906425997010d3cfcde2b41b9cdeb6b5a1ae7;hpb=71c8b7190cf3a4dcedbab0273c938f6f868562bc;p=mothur.git diff --git a/chopseqscommand.h b/chopseqscommand.h index 6049064..cc22c75 100644 --- a/chopseqscommand.h +++ b/chopseqscommand.h @@ -18,18 +18,28 @@ class ChopSeqsCommand : public Command { public: - ChopSeqsCommand(string); + ChopSeqsCommand(string); + ChopSeqsCommand(); ~ChopSeqsCommand(){}; - int execute(); - void help(); - + + vector setParameters(); + string getCommandName() { return "chop.seqs"; } + string getCommandCategory() { return "Sequence Processing"; } + string getOutputFileNameTag(string, string); + 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; + bool abort, countGaps, Short; int numbases; + vector outputNames; string getChopped(Sequence); - }; #endif