X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=unifracweightedcommand.h;h=fead41b0e8cb5dae95eed551ff76427b8c8d85f3;hb=5b72d1cf3fa48730e5bb70d59cced1e43e1fe424;hp=9deb065b21da66b0bd83ef50d6d7d457e750025a;hpb=b3296231bac975d0c655bd62075909786a23e270;p=mothur.git diff --git a/unifracweightedcommand.h b/unifracweightedcommand.h index 9deb065..fead41b 100644 --- a/unifracweightedcommand.h +++ b/unifracweightedcommand.h @@ -12,7 +12,7 @@ #include "command.hpp" #include "weighted.h" -#include "treemap.h" +#include "counttable.h" #include "progress.hpp" #include "sharedutilities.h" #include "fileoutput.h" @@ -28,7 +28,8 @@ class UnifracWeightedCommand : public Command { vector setParameters(); string getCommandName() { return "unifrac.weighted"; } string getCommandCategory() { return "Hypothesis Testing"; } - string getHelpString(); + string getOutputFileNameTag(string, string); + string getHelpString(); string getCitation() { return "Lozupone CA, Hamady M, Kelley ST, Knight R (2007). Quantitative and qualitative beta diversity measures lead to different insights into factors that structure microbial communities. Appl Environ Microbiol 73: 1576-85. \nhttp://www.mothur.org/wiki/Unifrac.weighted"; } string getDescription() { return "generic tests that describes whether two or more communities have the same structure"; } @@ -42,7 +43,7 @@ class UnifracWeightedCommand : public Command { linePair(int i, int j) : start(i), num(j) {} }; vector lines; - TreeMap* tmap; + CountTable* ct; FileOutput* output; vector T; //user trees vector utreeScores; //user tree unweighted scores @@ -57,7 +58,7 @@ class UnifracWeightedCommand : public Command { map validScores; //map contains scores from random bool abort, phylip, random, includeRoot, subsample, consensus; - string groups, itersString, outputForm, treefile, groupfile, namefile; + string groups, itersString, outputForm, treefile, groupfile, namefile, countfile; vector Groups, outputNames; //holds groups to be used int processors, subsampleSize, subsampleIters; ofstream outSum; @@ -72,7 +73,7 @@ class UnifracWeightedCommand : public Command { int createProcesses(Tree*, vector< vector >, vector< vector >&); int driver(Tree*, vector< vector >, int, int, vector< vector >&); int runRandomCalcs(Tree*, vector); - vector buildTrees(vector< vector >&, int, TreeMap&); + vector buildTrees(vector< vector >&, int, CountTable&); int getConsensusTrees(vector< vector >&, int); int getAverageSTDMatrices(vector< vector >&, int);