X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=rarefactsharedcommand.h;h=a5b45468d7059ad2c9e8877376c0154102d05316;hb=38491018f166c7c5517518cfa64832582f20dd85;hp=1a2d944894feabe26b4103e5431c0da08c6574b4;hpb=ffc44592ff7ae94f14f9e21f87198e33d323cd1d;p=mothur.git diff --git a/rarefactsharedcommand.h b/rarefactsharedcommand.h index 1a2d944..a5b4546 100644 --- a/rarefactsharedcommand.h +++ b/rarefactsharedcommand.h @@ -25,6 +25,7 @@ public: vector setParameters(); string getCommandName() { return "rarefaction.shared"; } string getCommandCategory() { return "OTU-Based Approaches"; } + string getOutputFileNameTag(string, string); string getHelpString(); string getCitation() { return "Magurran AE (2004). Measuring biological diversity. Blackwell Pub.: Malden, Ma. \nhttp://www.mothur.org/wiki/Rarefaction.shared"; } string getDescription() { return "generate inter-sample rarefaction curves using a re-sampling without replacement approach"; } @@ -40,12 +41,14 @@ private: string format; float freq; - bool abort, allLines, jumble; + map file2Group; //index in outputNames[i] -> group + bool abort, allLines, jumble, groupMode; set labels; //holds labels to be used string label, calc, groups, outputDir, sharedfile, designfile; vector Estimators, Groups, outputNames, Sets; int process(GroupMap&, string); + vector createGroupFile(vector&); };