]> git.donarmstrong.com Git - mothur.git/blob - classifyotucommand.h
working on citations
[mothur.git] / classifyotucommand.h
1 #ifndef CLASSIFYOTUSCOMMAND_H
2 #define CLASSIFYOTUSCOMMAND_H
3
4 /*
5  *  classifyotucommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 6/1/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12  
13 #include "command.hpp"
14 #include "listvector.hpp"
15 #include "inputdata.h"
16
17
18 class ClassifyOtuCommand : public Command {
19
20 public:
21         ClassifyOtuCommand(string);
22         ClassifyOtuCommand();
23         ~ClassifyOtuCommand() {}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "classify.otu";                }
27         string getCommandCategory()             { return "Phylotype Analysis";  }
28         string getHelpString(); 
29         string getCitation() { return "Schloss PD, Westcott SL (2011). Assessing and improving methods used in OTU-based approaches for 16S rRNA gene sequence analysis. Appl Environ Microbiol. \nhttp://www.mothur.org/wiki/Classify.otu"; }
30
31         
32         int execute(); 
33         void help() { m->mothurOut(getHelpString()); }  
34
35 private:
36
37         ListVector* list;
38         InputData* input;
39         string listfile, namefile, taxfile, label, outputDir, refTaxonomy, groupfile, basis;
40         bool abort, allLines, probs;
41         int cutoff;
42         set<string> labels; //holds labels to be used
43         vector<string> outputNames;
44         map<string, string> nameMap;
45         map<string, string> taxMap;
46
47         int readNamesFile();
48         int readTaxonomyFile();
49         void removeConfidences(string&);
50         int process(ListVector*);
51         vector<string> findConsensusTaxonomy(int, ListVector*, int&, string&);  // returns the name of the "representative" taxonomy of given bin
52         
53                                                                                                 
54 };
55
56 #endif
57
58