]> git.donarmstrong.com Git - mothur.git/blob - collectsharedcommand.h
added load.logfile command. changed summary.single output for subsample=t.
[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 getOutputFileNameTag(string, string);
33         string getHelpString(); 
34         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"; }
35         string getDescription()         { return "generates collector's curves for calculators, which describe the similarity between communities or their shared richness"; }
36
37         int execute(); 
38         void help() { m->mothurOut(getHelpString()); }  
39         
40         
41 private:
42         SharedOrderVector* order;
43         InputData* input;
44         Collect* cCurve;
45         vector<Display*> cDisplays;
46         float freq;
47
48         bool abort, allLines, all;
49         set<string> labels; //holds labels to be used
50         string label, calc, groups, outputDir, sharedfile;
51         vector<string>  Estimators, Groups, outputNames;
52 };
53
54 #endif