X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=removeseqscommand.h;h=de1e3d9d6aff8595a098cf8bf2fd6c1d5c79ec9f;hb=5e5253ff472de3c6349e562d2580873287be0c65;hp=647cb765f0e75781862d0fa74305d55573c85872;hpb=81276c241b984898f8d30ad123c00592ee6db7b8;p=mothur.git diff --git a/removeseqscommand.h b/removeseqscommand.h index 647cb76..de1e3d9 100644 --- a/removeseqscommand.h +++ b/removeseqscommand.h @@ -17,21 +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, listfile, outputDir; + 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(); - void readList(); + int readList(); + int readTax(); + int readQual(); };