]> git.donarmstrong.com Git - mothur.git/blob - indicatorcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / indicatorcommand.h
1 #ifndef INDICATORCOMMAND_H
2 #define INDICATORCOMMAND_H
3
4 /*
5  *  indicatorcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 11/12/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "readtree.h"
15 #include "treemap.h"
16 #include "sharedrabundvector.h"
17 #include "sharedrabundfloatvector.h"
18 #include "inputdata.h"
19
20 class IndicatorCommand : public Command {
21 public:
22         IndicatorCommand(string);
23         IndicatorCommand();
24         ~IndicatorCommand(){}
25         
26         vector<string> setParameters();
27         string getCommandName()                 { return "indicator";                           }
28         string getCommandCategory()             { return "Hypothesis Testing";          }
29         string getHelpString(); 
30         
31         int execute();
32         void help() { m->mothurOut(getHelpString()); }  
33         
34 private:
35         ReadTree* read;
36         TreeMap* treeMap;
37         GroupMap* designMap;
38         string treefile, sharedfile, relabundfile, groups, label, inputFileName, outputDir, designfile;
39         bool abort;
40         vector<string> outputNames, Groups;
41         vector<SharedRAbundVector*> lookup;
42         vector<SharedRAbundFloatVector*> lookupFloat;
43         
44         int getShared();
45         int getSharedFloat();
46         int GetIndicatorSpecies(Tree*&);
47         set<string> getDescendantList(Tree*&, int, map<int, set<string> >, map<int, set<int> >&);
48         vector<float> getValues(vector< vector<SharedRAbundVector*> >&);
49         vector<float> getValues(vector< vector<SharedRAbundFloatVector*> >&);
50         map<int, float> getDistToRoot(Tree*&);
51         
52 };
53
54
55 #endif
56