]> git.donarmstrong.com Git - mothur.git/blob - parsimonycommand.h
changed unifrac.weighted()
[mothur.git] / parsimonycommand.h
1 #ifndef PARSIMONYCOMMAND_H
2 #define PARSIMONYCOMMAND_H
3 /*
4  *  parsimonycommand.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 1/26/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "command.hpp"
13 #include "parsimony.h"
14 #include "treemap.h"
15
16 using namespace std;
17
18 class GlobalData;
19
20 class ParsimonyCommand : public Command {
21         
22         public:
23                 ParsimonyCommand();     
24                 ~ParsimonyCommand() { delete pars; }
25                 int execute();  
26         
27         private:
28                 GlobalData* globaldata;
29                 vector<Tree*> T;           //user trees
30                 Tree* randT;  //random tree
31                 Tree* copyUserTree; 
32                 TreeMap* tmap; 
33                 TreeMap* savetmap;
34                 Parsimony* pars;
35                 string parsFile, sumFile, randomtree;
36                 int iters, numGroups;
37                 vector<int> numEachGroup; //vector containing the number of sequences in each group the users wants for random distrib.
38                 vector<float> userTreeScores; //scores for users trees
39                 vector<float> UScoreSig;  //tree score signifigance when compared to random trees - percentage of random trees with that score or lower.
40                 EstOutput userData;                     //pscore info for user tree
41                 EstOutput randomData;           //pscore info for random trees
42                 map<int, float> validScores;  //contains scores from both user and random
43                 map<int, float> rscoreFreq;  //pscore, number of random trees with that score.
44                 map<int, float> uscoreFreq;  //pscore, number of user trees with that score.
45                 map<int, float> rCumul;  //pscore, cumulative percentage of number of random trees with that score or lower.
46                 map<int, float> uCumul;  //pscore, cumulative percentage of number of user trees with that score or lower .
47                 map<int, float>::iterator it;
48                 map<int, float>::iterator it2;
49                 
50                 ofstream out, outSum;
51                 
52                 void printParsimonyFile();  
53                 void printUSummaryFile();
54                 void getUserInput();
55                 void setGroups();
56                 
57 };
58
59
60 #endif