X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=subsamplecommand.h;h=db4001a5c07337d51ea96aedfa9d3f20458b6685;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=d1fb1226236dc3842b9ace53536cf95a266f1d5e;hpb=035f86272c776e1cccaa47021e26782e49cd41e7;p=mothur.git diff --git a/subsamplecommand.h b/subsamplecommand.h index d1fb122..db4001a 100644 --- a/subsamplecommand.h +++ b/subsamplecommand.h @@ -28,9 +28,10 @@ public: vector setParameters(); string getCommandName() { return "sub.sample"; } - string getCommandCategory() { return "General"; } - string getOutputFileNameTag(string, string); + string getCommandCategory() { return "Sequence Processing"; } + string getHelpString(); + string getOutputPattern(string); string getCitation() { return "http://www.mothur.org/wiki/Sub.sample"; } string getDescription() { return "get a sampling of sequences from a list, shared, rabund, sabund or fasta file"; } @@ -39,7 +40,7 @@ public: private: bool abort, pickedGroups, allLines, persample; - string listfile, groupfile, countfile, sharedfile, rabundfile, sabundfile, fastafile, namefile; + string listfile, groupfile, countfile, sharedfile, rabundfile, sabundfile, fastafile, namefile, taxonomyfile; set labels; //holds labels to be used string groups, label, outputDir; vector Groups, outputNames; @@ -56,9 +57,10 @@ private: int processShared(vector&); int processRabund(RAbundVector*&, ofstream&); int processSabund(SAbundVector*&, ofstream&); - int processList(ListVector*&, ofstream&, set&); + int processList(ListVector*&, set&); int getNames(); int readNames(); + int getTax(set&); };