X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removegroupscommand.h;h=c6db38057f8c206ecbba0806486078eccdcc7278;hb=957d67f7d8bbadfd2930de061e89fd9b149270fd;hp=103ab66197e7ecd2ea447430a0edfba3eac3c717;hpb=3094cb29c613d9687e861e1d0cf9104b7141d24e;p=mothur.git diff --git a/removegroupscommand.h b/removegroupscommand.h index 103ab66..c6db380 100644 --- a/removegroupscommand.h +++ b/removegroupscommand.h @@ -25,9 +25,10 @@ public: vector setParameters(); string getCommandName() { return "remove.groups"; } string getCommandCategory() { return "OTU-Based Approaches"; } + string getOutputFileNameTag(string, string); string getHelpString(); string getCitation() { return "http://www.mothur.org/wiki/Remove.groups"; } - string getDescription() { return "removes sequences from a list, fasta, name, group or taxonomy file from a given group or set of groups"; } + string getDescription() { return "removes sequences from a list, fasta, name, group, shared, design or taxonomy file from a given group or set of groups"; } int execute(); void help() { m->mothurOut(getHelpString()); } @@ -35,7 +36,7 @@ public: private: set names; - string accnosfile, fastafile, namefile, groupfile, listfile, taxfile, outputDir, groups, sharedfile; + string accnosfile, fastafile, namefile, groupfile, designfile, listfile, taxfile, outputDir, groups, sharedfile; bool abort; vector outputNames, Groups; GroupMap* groupMap; @@ -48,10 +49,10 @@ private: int readShared(); int readName(); int readGroup(); - void readAccnos(); int readList(); int readTax(); int fillNames(); + int readDesign(); };