X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=indicatorcommand.h;h=2c36c35f6f3025bb3f07760055512b2e0e257914;hb=44f3a3c81a34fdee62550d98838a4b421e8df08e;hp=aa3156298a1a729f416bb793e60b7739c39843d1;hpb=cd7040a22ae19c86a13c2c10ed90a64b77a0c482;p=mothur.git diff --git a/indicatorcommand.h b/indicatorcommand.h index aa31562..2c36c35 100644 --- a/indicatorcommand.h +++ b/indicatorcommand.h @@ -26,6 +26,7 @@ public: vector setParameters(); string getCommandName() { return "indicator"; } string getCommandCategory() { return "Hypothesis Testing"; } + string getOutputFileNameTag(string, string); string getHelpString(); string getCitation() { return "Dufrene M, Legendre P (1997). Species assemblages and indicator species: The need for a flexible asymmetrical approach. Ecol Monogr 67: 345-66.\n McCune B, Grace JB, Urban DL (2002). Analysis of ecological communities. MjM Software Design: Gleneden Beach, OR. \nLegendre P, Legendre L (1998). Numerical Ecology. Elsevier: New York. \nhttp://www.mothur.org/wiki/Indicator"; } string getDescription() { return "calculate the indicator value for each OTU"; } @@ -39,7 +40,7 @@ private: GroupMap* designMap; string treefile, sharedfile, relabundfile, groups, label, inputFileName, outputDir, designfile; bool abort; - int iters; + int iters, processors; vector outputNames, Groups; vector lookup; vector lookupFloat; @@ -54,6 +55,11 @@ private: map getDistToRoot(Tree*&); map< vector, vector > randomizeGroupings(vector< vector >&, int); map< vector, vector > randomizeGroupings(vector< vector >&, int); + vector driver(vector< vector >&, map< vector, vector >, int, vector, int); + vector driver(vector< vector >&, map< vector, vector >, int, vector, int); + vector getPValues(vector< vector >&, map< vector, vector >, int, vector); + vector getPValues(vector< vector >&, map< vector, vector >, int, vector); + };