]> git.donarmstrong.com Git - mothur.git/blob - consensuscommand.h
d5072da082cd020d1836e39c06228fa4689eafbe
[mothur.git] / consensuscommand.h
1 #ifndef CONCENSUSCOMMAND_H
2 #define CONCENSUSCOMMAND_H
3 /*
4  *  consensuscommand.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 4/29/09.
8  *  Copyright 2009 Schloss Lab UMASS AMherst. All rights reserved.
9  *
10  */
11
12 #include "command.hpp"
13 #include "tree.h"
14 #include "treemap.h"
15 #include "sharedutilities.h"
16         
17 class GlobalData;
18
19 class ConcensusCommand : public Command {
20         
21 public:
22         ConcensusCommand(string);       
23         ConcensusCommand();
24         ~ConcensusCommand();
25         vector<string> getRequiredParameters();
26         vector<string> getValidParameters();
27         vector<string> getRequiredFiles();
28         map<string, vector<string> > getOutputFiles() { return outputTypes; }
29         int execute();
30         void help();    
31         
32 private:
33         GlobalData* globaldata;
34         SharedUtil* util;
35         vector<Tree*> t;
36         Tree* consensusTree;
37         bool abort;
38         vector<string> treeSet;         //set containing all members of the tree to start recursion.  filled in getSets().
39         map< vector<string>, int > nodePairs;  //<map of possible combinations these combos are the pcounts or descendants info, to how many times they occured
40                                                                                 // ie. combos FI and EGK would create nodePairs[vector containing F and I] = 1; nodePairs[vector containing E, G and K] = 1
41                                                                                 // if you saw the combo FI again in another tree you would then update nodePairs[vector containing F and I] = 2;
42                                                                                 // requires vectors to be sorted to find key.
43         map< vector<string>, vector< vector<string> > > bestSplit;  //maps a group to its best split
44         map< vector<string>, int > nodePairsInitialRate;
45         map< vector<string>, int > nodePairsInTree;
46         map<string, int>::iterator it;
47         map< vector<string>, int>::iterator it2;
48         string outputFile, notIncluded, filename;
49         ofstream out, out2;
50         int numNodes, numLeaves, count;  //count is the next available spot in the tree vector
51         vector<string> outputNames;
52         map<string, vector<string> > outputTypes;
53                                                                                 
54         int getSets();
55         int getSubgroupRating(vector<string>);
56         vector<string> getSmallest(map< vector<string>, int>);
57         vector<string> getNextAvailableSet(vector<string>, vector<string>&);  
58         vector<string> getRestSet(vector<string>, vector<string>);
59         bool isSubset(vector<string>, vector<string>); 
60         int findSpot(string); 
61         int buildConcensusTree(vector<string>);
62         
63 };
64
65 #endif
66