X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=unifracweightedcommand.h;h=5bb690a854ed5c13f62a18fedc51cd39eee93f3a;hb=794b3f789d6160c99b75edb9cf9af5cf3df4b9da;hp=047c92b2574515e20c439931808dce8dc5a34705;hpb=d037597badc8d18e235c59f0c1114180edb7f98f;p=mothur.git diff --git a/unifracweightedcommand.h b/unifracweightedcommand.h index 047c92b..5bb690a 100644 --- a/unifracweightedcommand.h +++ b/unifracweightedcommand.h @@ -10,53 +10,74 @@ * */ -#include -#include -#include -#include -#include #include "command.hpp" #include "weighted.h" #include "treemap.h" +#include "progress.hpp" +#include "sharedutilities.h" +#include "fileoutput.h" -using namespace std; class GlobalData; class UnifracWeightedCommand : public Command { public: - UnifracWeightedCommand(); - ~UnifracWeightedCommand() { delete weighted; } + UnifracWeightedCommand(string); + UnifracWeightedCommand(); + ~UnifracWeightedCommand() { if (abort == false) { delete weighted; delete util; } } + vector getRequiredParameters(); + vector getValidParameters(); + vector getRequiredFiles(); + map > getOutputFiles() { return outputTypes; } int execute(); + void help(); private: + struct linePair { + int start; + int num; + linePair(int i, int j) : start(i), num(j) {} + }; + vector lines; + GlobalData* globaldata; + SharedUtil* util; + FileOutput* output; vector T; //user trees - vector utreeScores; //user tree unweighted scores - vector WScoreSig; //tree weighted score signifigance when compared to random trees - percentage of random trees with that score or lower. + vector utreeScores; //user tree unweighted scores + vector WScoreSig; //tree weighted score signifigance when compared to random trees - percentage of random trees with that score or lower. vector groupComb; // AB. AC, BC... - Tree* randT; //random tree TreeMap* tmap; Weighted* weighted; - string weightedFile, sumFile, distFile; - int iters, numGroups, numComp; + string sumFile, outputDir; + int iters, numGroups, numComp, counter; EstOutput userData; //weighted score info for user tree EstOutput randomData; //weighted score info for random trees - vector< map > validScores; //vector each group comb has an entry - vector< map > rscoreFreq; //vector each group comb has an entry - vector< map > uscoreFreq; //vector each group comb has an entry - vector< map > totalrscoreFreq; //vector each group comb has an entry - vector< map > rCumul; //vector each group comb has an entry - vector< map > uCumul; //vector each group comb has an entry - map::iterator it; - map::iterator it2; + vector< vector > rScores; //vector each group comb has an entry + vector< vector > uScores; //vector each group comb has an entry + vector< map > rScoreFreq; //map -vector entry for each combination. + vector< map > rCumul; //map -vector entry for each c + map validScores; //map contains scores from random + + bool abort, phylip, random; + string groups, itersString, outputForm; + vector Groups, outputNames; //holds groups to be used + map > outputTypes; + int processors; + - ofstream outSum, outDist, out; + ofstream outSum; void printWSummaryFile(); void printWeightedFile(); - void saveRandomScores(); + void createPhylipFile(); + //void removeValidScoresDuplicates(); + int findIndex(float, int); + void calculateFreqsCumuls(); + int createProcesses(Tree*, vector< vector >, vector< vector >&); + int driver(Tree*, vector< vector >, int, int, vector< vector >&); + };