]> git.donarmstrong.com Git - mothur.git/blob - clustersplitcommand.h
working on citations
[mothur.git] / clustersplitcommand.h
1 #ifndef CLUSTERSPLITCOMMAND_H
2 #define CLUSTERSPLITCOMMAND_H
3
4 /*
5  *  clustersplitcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 5/19/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12  
13 #include "command.hpp"
14 #include "rabundvector.hpp"
15 #include "sabundvector.hpp"
16 #include "listvector.hpp"
17 #include "cluster.hpp"
18 #include "sparsematrix.hpp"
19
20
21 class ClusterSplitCommand : public Command {
22         
23 public:
24         ClusterSplitCommand(string);
25         ClusterSplitCommand();
26         ~ClusterSplitCommand() {}
27         
28         vector<string> setParameters();
29         string getCommandName()                 { return "cluster.split";               }
30         string getCommandCategory()             { return "Clustering";                  }
31         string getHelpString(); 
32         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/Cluster.split"; }
33         
34         int execute(); 
35         void help() { m->mothurOut(getHelpString()); }  
36
37 private:
38         vector<int> processIDS;   //processid
39         vector<string> outputNames;
40         
41         string method, fileroot, tag, outputDir, phylipfile, columnfile, namefile, distfile, format, showabund, timing, splitmethod, taxFile, fastafile;
42         double cutoff, splitcutoff;
43         int precision, length, processors, taxLevelCutoff;
44         bool print_start, abort, hard, large;
45         time_t start;
46         ofstream outList, outRabund, outSabund;
47         
48         void printData(ListVector*);
49         int createProcesses(vector < vector < map<string, string> > >);
50         vector<string> cluster(vector< map<string, string> >, set<string>&);
51         int mergeLists(vector<string>, map<float, int>, ListVector*);
52         map<float, int> completeListFile(vector<string>, string, set<string>&, ListVector*&);
53         int createMergedDistanceFile(vector< map<string, string> >);
54 };
55
56 #endif
57