]> git.donarmstrong.com Git - mothur.git/blob - mgclustercommand.h
added createRabund function to mgcluster
[mothur.git] / mgclustercommand.h
1 #ifndef MGCLUSTERCOMMAND_H
2 #define MGCLUSTERCOMMAND_H
3
4 /*
5  *  mgclustercommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 12/11/09.
9  *  Copyright 2009 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "readblast.h"
15 #include "sparsematrix.hpp"
16 #include "nameassignment.hpp"
17 #include "cluster.hpp"
18 #include "hcluster.h"
19 #include "rabundvector.hpp"
20 #include "sabundvector.hpp"
21
22 /**********************************************************************/
23
24 class MGClusterCommand : public Command {
25
26 public:
27         MGClusterCommand(string);
28         MGClusterCommand();
29         ~MGClusterCommand(){}
30         
31         vector<string> setParameters();
32         string getCommandName()                 { return "mgcluster";   }
33         string getCommandCategory()             { return "Clustering";  }
34         string getOutputFileNameTag(string, string);
35         string getHelpString(); 
36         string getCitation() { return "Schloss PD, Handelsman J (2008). A statistical toolbox for metagenomics. BMC Bioinformatics 9: 34. \nhttp://www.mothur.org/wiki/Mgcluster"; }
37         string getDescription()         { return "cluster your sequences into OTUs using a blast file"; }
38
39         int execute(); 
40         void help() { m->mothurOut(getHelpString()); }  
41         
42         
43 private:
44         ReadBlast* read;
45         NameAssignment* nameMap;
46         Cluster* cluster;
47         HCluster* hcluster;
48         ListVector* list;
49         ListVector oldList;
50         vector<seqDist> overlapMatrix;
51         vector<string> outputNames;
52         
53         string blastfile, method, namefile, overlapFile, distFile, outputDir;
54         ofstream sabundFile, rabundFile, listFile;
55         double cutoff;
56         float penalty;
57         int precision, length, precisionLength;
58         bool abort, minWanted, hclusterWanted, merge, hard;
59         
60         void printData(ListVector*);
61         ListVector* mergeOPFs(map<string, int>, float);
62         void sortHclusterFiles(string, string);
63         vector<seqDist> getSeqs(ifstream&);
64     RAbundVector createRabund(ListVector, map<string, int>);
65
66 };
67
68 /**********************************************************************/
69
70 #endif
71
72
73