X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removeseqscommand.h;h=df96e4514bc84787ad901e137bbc794588681705;hb=791f42d21a85f794529fd4c912dcc27d873c25e8;hp=434983e8e4c5909be8a083cf8251cee34b0d27ce;hpb=c53c53b0280452e1c3a087fbf807b2e508cd66c4;p=mothur.git diff --git a/removeseqscommand.h b/removeseqscommand.h index 434983e..df96e45 100644 --- a/removeseqscommand.h +++ b/removeseqscommand.h @@ -17,20 +17,34 @@ class RemoveSeqsCommand : public Command { public: RemoveSeqsCommand(string); - ~RemoveSeqsCommand(){}; - int execute(); - void help(); - + RemoveSeqsCommand(); + ~RemoveSeqsCommand(){} + + vector setParameters(); + string getCommandName() { return "remove.seqs"; } + string getCommandCategory() { return "Sequence Processing"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Remove.seqs"; } + string getDescription() { return "removes sequences from a list, fasta, name, group, alignreport, quality or taxonomy file"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + + private: set names; - string accnosfile, fastafile, namefile, groupfile, alignfile; - bool abort; + string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, qualfile, outputDir; + bool abort, dups; + vector outputNames; - void readFasta(); - void readName(); - void readGroup(); - void readAlign(); + int readFasta(); + int readName(); + int readGroup(); + int readAlign(); void readAccnos(); + int readList(); + int readTax(); + int readQual(); };