]> git.donarmstrong.com Git - mothur.git/blob - summarycommand.h
added citation function to commands
[mothur.git] / summarycommand.h
1 #ifndef SUMMARYCOMMAND_H
2 #define SUMMARYCOMMAND_H
3 /*
4  *  summarycommand.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 #include "command.hpp"
13 #include "sabundvector.hpp"
14 #include "inputdata.h"
15 #include "calculator.h"
16 #include "validcalculator.h"
17
18 class SummaryCommand : public Command {
19
20 public:
21         SummaryCommand(string);
22         SummaryCommand();
23         ~SummaryCommand(){}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "summary.single";                      }
27         string getCommandCategory()             { return "OTU-Based Approaches";        }
28         string getHelpString(); 
29         string getCitation() { return "http://www.mothur.org/wiki/Summary.single"; }
30         
31         int execute(); 
32         void help() { m->mothurOut(getHelpString()); }  
33         
34 private:
35         vector<Calculator*> sumCalculators;     
36         InputData* input;
37         SAbundVector* sabund;
38         int abund, size;
39
40         bool abort, allLines, groupMode;
41         set<string> labels; //holds labels to be used
42         string label, calc, outputDir, sharedfile, listfile, rabundfile, sabundfile, format, inputfile;
43         vector<string>  Estimators;
44         vector<string> inputFileNames, outputNames;
45         vector<string> groups;
46         
47         vector<string> parseSharedFile(string);
48         string createGroupSummaryFile(int, int, vector<string>&);
49
50
51 };
52 #endif