X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=removegroupscommand.h;h=c6e9d645c9f7fff26e2c23c634b6264a4614e01b;hp=103ab66197e7ecd2ea447430a0edfba3eac3c717;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=3094cb29c613d9687e861e1d0cf9104b7141d24e diff --git a/removegroupscommand.h b/removegroupscommand.h index 103ab66..c6e9d64 100644 --- a/removegroupscommand.h +++ b/removegroupscommand.h @@ -25,9 +25,11 @@ public: vector setParameters(); string getCommandName() { return "remove.groups"; } string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getOutputPattern(string); 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 +37,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 +50,11 @@ private: int readShared(); int readName(); int readGroup(); - void readAccnos(); + int readCount(); int readList(); int readTax(); int fillNames(); + int readDesign(); };