X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=unifracunweightedcommand.h;h=3961e53cb68c96e70dd5bcd55449ed5d72346cd9;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=3bd9a0db8915eb36c2e66174e8750c0fb1fab52a;hpb=c5c7502f435e1413c19e373dab1dfebcaa67588d;p=mothur.git diff --git a/unifracunweightedcommand.h b/unifracunweightedcommand.h index 3bd9a0d..3961e53 100644 --- a/unifracunweightedcommand.h +++ b/unifracunweightedcommand.h @@ -12,52 +12,59 @@ #include "command.hpp" #include "unweighted.h" -#include "treemap.h" +#include "counttable.h" #include "sharedutilities.h" - - -using namespace std; - -class GlobalData; +#include "fileoutput.h" +#include "readtree.h" class UnifracUnweightedCommand : public Command { public: - UnifracUnweightedCommand(); - ~UnifracUnweightedCommand() { delete unweighted; delete util; } - int execute(); + UnifracUnweightedCommand(string); + UnifracUnweightedCommand(); + ~UnifracUnweightedCommand() {} + + vector setParameters(); + string getCommandName() { return "unifrac.unweighted"; } + string getCommandCategory() { return "Hypothesis Testing"; } + + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "Lozupone C, Knight R (2005). UniFrac: a new phylogenetic method for comparing microbial communities. Appl Environ Microbiol 71: 8228-35. \nhttp://www.mothur.org/wiki/Unifrac.unweighted"; } + string getDescription() { return "generic tests that describes whether two or more communities have the same structure"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; - SharedUtil* util; + FileOutput* output; vector T; //user trees - TreeMap* tmap; - Unweighted* unweighted; - string sumFile, unweightedFile, unweightedFileout, allGroups; + CountTable* ct; + string sumFile, allGroups; vector groupComb; // AB. AC, BC... - int iters, numGroups, numComp, counter; - EstOutput userData; //unweighted score info for user tree - EstOutput randomData; //unweighted score info for random trees + int iters, numGroups, numComp, counter, processors, subsampleSize, subsampleIters; vector< vector > utreeScores; //scores for users trees for each comb. vector< vector > UWScoreSig; //tree score signifigance when compared to random trees - percentage of random trees with that score or higher. map validScores; //map contains scores from random vector< map > rscoreFreq; //map -vector entry for each combination. vector< map > rCumul; //map -vector entry for each combination. - map::iterator it2; - map::iterator it; + bool abort, phylip, random, includeRoot, consensus, subsample; + string groups, itersString, outputDir, outputForm, treefile, groupfile, namefile, countfile; + vector Groups, outputNames; //holds groups to be used + ofstream outSum, out; ifstream inFile; - void printUWSummaryFile(); + int runRandomCalcs(Tree*, vector); + void printUWSummaryFile(int); void printUnweightedFile(); - void initFile(string); - void output(vector); - void resetFile(); - + void createPhylipFile(int); + vector buildTrees(vector< vector >&, int, CountTable&); + int getConsensusTrees(vector< vector >&, int); + int getAverageSTDMatrices(vector< vector >&, int); }; - - -#endif \ No newline at end of file +#endif