X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=unifracunweightedcommand.h;h=3961e53cb68c96e70dd5bcd55449ed5d72346cd9;hp=74ba2b2d18ed2642804befa4f1b4dc8b21595e67;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=e150b0b0664caec517485ee6d69dcdade6dcae77 diff --git a/unifracunweightedcommand.h b/unifracunweightedcommand.h index 74ba2b2..3961e53 100644 --- a/unifracunweightedcommand.h +++ b/unifracunweightedcommand.h @@ -12,7 +12,7 @@ #include "command.hpp" #include "unweighted.h" -#include "treemap.h" +#include "counttable.h" #include "sharedutilities.h" #include "fileoutput.h" #include "readtree.h" @@ -27,44 +27,43 @@ class UnifracUnweightedCommand : public Command { vector setParameters(); string getCommandName() { return "unifrac.unweighted"; } string getCommandCategory() { return "Hypothesis Testing"; } - string getHelpString(); - string getCitation() { return "http://www.mothur.org/wiki/Unifrac.unweighted"; } - + + 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: - ReadTree* read; - SharedUtil* util; FileOutput* output; vector T; //user trees - TreeMap* tmap; - Unweighted* unweighted; + CountTable* ct; string sumFile, allGroups; vector groupComb; // AB. AC, BC... - int iters, numGroups, numComp, counter, processors, numUniquesInName; - 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. - bool abort, phylip, random, includeRoot; - string groups, itersString, outputDir, outputForm, treefile, groupfile, namefile; + 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; - map nameMap; + int runRandomCalcs(Tree*, vector); void printUWSummaryFile(int); void printUnweightedFile(); void createPhylipFile(int); - int readNamesFile(); - + vector buildTrees(vector< vector >&, int, CountTable&); + int getConsensusTrees(vector< vector >&, int); + int getAverageSTDMatrices(vector< vector >&, int); };