]> git.donarmstrong.com Git - mothur.git/blob - bootstrapsharedcommand.h
fixed bug in corr.axes so that it now uses the shared files bin numbers. finished...
[mothur.git] / bootstrapsharedcommand.h
1 #ifndef BOOTSTRAPSHAREDCOMMAND_H
2 #define BOOTSTRAPSHAREDCOMMAND_H
3
4 /*
5  *  bootstrapsharedcommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 4/16/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12  
13 #include "command.hpp"
14 #include "sharedordervector.h"
15 #include "inputdata.h"
16 #include "groupmap.h"
17 #include "validcalculator.h"
18 #include "tree.h"
19 #include "treemap.h"
20 #include "sharedutilities.h"
21 #include "consensuscommand.h"
22
23 class BootSharedCommand : public Command {
24         
25 public:
26         BootSharedCommand(string);      
27         BootSharedCommand();
28         ~BootSharedCommand();
29         
30         vector<string> setParameters();
31         string getCommandName()                 { return "bootstrap.shared";    }
32         string getCommandCategory()             { return "Hidden";                              }
33         string getHelpString(); 
34         string getCitation() { return "no citation"; }
35         string getDescription()         { return "bootstrap.shared"; }
36
37         
38         int execute(); 
39         void help() { m->mothurOut(getHelpString()); }  
40         
41 private:
42         int createTree(ostream*, Tree*);
43         void printSims();
44         int process(SharedOrderVector*);
45         
46         SharedUtil* util;
47         TreeMap* tmap;
48         Tree* t;
49         Tree* tempTree;
50         ConcensusCommand* consensus;
51         vector< vector<Tree*> > trees;  //a vector of trees for each calculator chosen
52         vector<Calculator*> treeCalculators;
53         vector<ofstream*> out;
54         vector< vector<float> > simMatrix;
55         map<int, int> index;  //maps row in simMatrix to vector index in the tree       
56         InputData* input;
57         ValidCalculators* validCalculator;
58         SharedOrderVector* order;
59         vector<SharedRAbundVector*> lookup;
60
61         bool abort, allLines;
62         set<string> labels; //holds labels to be used
63         string outputFile, calc, groups, label, outputDir, sharedfile;
64         int numGroups, iters;
65         vector<string>  Estimators, Groups, outputNames; //holds estimators to be used
66 };
67         
68         
69 #endif
70
71