X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=unifracunweightedcommand.h;h=f462d51f9b5b7022d61b0a521f2526475350b034;hb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;hp=155fa75d6185d3d1bf10923ca56903a9e3e85aa8;hpb=d5bf2c1354d0811a33394d918b15620606560d58;p=mothur.git diff --git a/unifracunweightedcommand.h b/unifracunweightedcommand.h index 155fa75..f462d51 100644 --- a/unifracunweightedcommand.h +++ b/unifracunweightedcommand.h @@ -15,20 +15,26 @@ #include "treemap.h" #include "sharedutilities.h" #include "fileoutput.h" - - -class GlobalData; +#include "readtree.h" class UnifracUnweightedCommand : public Command { public: UnifracUnweightedCommand(string); - ~UnifracUnweightedCommand() { delete unweighted; delete util; } + UnifracUnweightedCommand(); + ~UnifracUnweightedCommand() {} + + vector setParameters(); + string getCommandName() { return "unifrac.unweighted"; } + string getCommandCategory() { return "Hypothesis Testing"; } + string getHelpString(); + int execute(); - void help(); + void help() { m->mothurOut(getHelpString()); } + private: - GlobalData* globaldata; + ReadTree* read; SharedUtil* util; FileOutput* output; vector T; //user trees @@ -36,7 +42,7 @@ class UnifracUnweightedCommand : public Command { Unweighted* unweighted; string sumFile, allGroups; vector groupComb; // AB. AC, BC... - int iters, numGroups, numComp, counter; + int iters, numGroups, numComp, counter, processors, numUniquesInName; EstOutput userData; //unweighted score info for user tree EstOutput randomData; //unweighted score info for random trees vector< vector > utreeScores; //scores for users trees for each comb. @@ -45,16 +51,18 @@ class UnifracUnweightedCommand : public Command { vector< map > rscoreFreq; //map -vector entry for each combination. vector< map > rCumul; //map -vector entry for each combination. - bool abort, phylip, random; - string groups, itersString; - vector Groups; //holds groups to be used + bool abort, phylip, random, includeRoot; + string groups, itersString, outputDir, outputForm, treefile, groupfile, namefile; + vector Groups, outputNames; //holds groups to be used ofstream outSum, out; ifstream inFile; + map nameMap; void printUWSummaryFile(int); void printUnweightedFile(); void createPhylipFile(int); + int readNamesFile(); };