X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=removegroupscommand.h;h=c36998ad8bb52349d3c5d0ee73812dd8a6f50c07;hb=006601d68abe8d0061f77e8d28323b160750e343;hp=103ab66197e7ecd2ea447430a0edfba3eac3c717;hpb=3094cb29c613d9687e861e1d0cf9104b7141d24e;p=mothur.git diff --git a/removegroupscommand.h b/removegroupscommand.h index 103ab66..c36998a 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, countfile, designfile, listfile, taxfile, outputDir, groups, sharedfile; bool abort; vector outputNames, Groups; GroupMap* groupMap; @@ -48,10 +49,11 @@ private: int readShared(); int readName(); int readGroup(); - void readAccnos(); + int readCount(); int readList(); int readTax(); int fillNames(); + int readDesign(); };