]> git.donarmstrong.com Git - mothur.git/blob - collectsharedcommand.h
working on pam
[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         
33         string getHelpString(); 
34     string getOutputPattern(string);    
35         string getCitation() { return "Schloss PD, Handelsman J (2006). Introducing SONS, A tool that compares the membership of microbial communities. Appl Environ Microbiol 72: 6773-9. \nhttp://www.mothur.org/wiki/Collect.shared"; }
36         string getDescription()         { return "generates collector's curves for calculators, which describe the similarity between communities or their shared richness"; }
37
38         int execute(); 
39         void help() { m->mothurOut(getHelpString()); }  
40         
41         
42 private:
43         SharedOrderVector* order;
44         InputData* input;
45         Collect* cCurve;
46         vector<Display*> cDisplays;
47         float freq;
48
49         bool abort, allLines, all;
50         set<string> labels; //holds labels to be used
51         string label, calc, groups, outputDir, sharedfile;
52         vector<string>  Estimators, Groups, outputNames;
53 };
54
55 #endif