]> git.donarmstrong.com Git - mothur.git/blob - collectsharedcommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / collectsharedcommand.h
1 #ifndef COLLECTSHAREDCOMMAND_H
2 #define COLLECTSHAREDCOMMAND_H
3 /*
4  *  collectsharedcommand.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/2/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12
13 #include "command.hpp"
14 #include "sharedordervector.h"
15 #include "inputdata.h"
16 #include "collect.h"
17 #include "display.h"
18 #include "validcalculator.h"
19 #include "sharedutilities.h"
20
21
22 class CollectSharedCommand : public Command {
23         
24 public:
25         CollectSharedCommand(string);   
26         CollectSharedCommand(); 
27         ~CollectSharedCommand();
28         
29         vector<string> setParameters();
30         string getCommandName()                 { return "collect.shared";                      }
31         string getCommandCategory()             { return "OTU-Based Approaches";        }
32         string getHelpString(); 
33         
34         int execute(); 
35         void help() { m->mothurOut(getHelpString()); }  
36         
37         
38 private:
39         SharedOrderVector* order;
40         InputData* input;
41         Collect* cCurve;
42         vector<Display*> cDisplays;
43         float freq;
44
45         bool abort, allLines, all;
46         set<string> labels; //holds labels to be used
47         string label, calc, groups, outputDir, sharedfile;
48         vector<string>  Estimators, Groups, outputNames;
49 };
50
51 #endif