X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removeseqscommand.h;h=de1e3d9d6aff8595a098cf8bf2fd6c1d5c79ec9f;hb=d0954e27635712cdbd8b86e3c4510670803a2665;hp=434983e8e4c5909be8a083cf8251cee34b0d27ce;hpb=c53c53b0280452e1c3a087fbf807b2e508cd66c4;p=mothur.git diff --git a/removeseqscommand.h b/removeseqscommand.h index 434983e..de1e3d9 100644 --- a/removeseqscommand.h +++ b/removeseqscommand.h @@ -17,20 +17,30 @@ class RemoveSeqsCommand : public Command { public: RemoveSeqsCommand(string); - ~RemoveSeqsCommand(){}; + RemoveSeqsCommand(); + ~RemoveSeqsCommand(){} + vector getRequiredParameters(); + vector getValidParameters(); + vector getRequiredFiles(); + map > getOutputFiles() { return outputTypes; } int execute(); void help(); 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; + map > outputTypes; - void readFasta(); - void readName(); - void readGroup(); - void readAlign(); + int readFasta(); + int readName(); + int readGroup(); + int readAlign(); void readAccnos(); + int readList(); + int readTax(); + int readQual(); };