]> git.donarmstrong.com Git - mothur.git/blob - mgclustercommand.h
edited createRabund function
[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 //    RAbundVector rav;
51         vector<seqDist> overlapMatrix;
52         vector<string> outputNames;
53         
54         string blastfile, method, namefile, overlapFile, distFile, outputDir;
55         ofstream sabundFile, rabundFile, listFile;
56         double cutoff;
57         float penalty;
58         int precision, length, precisionLength;
59         bool abort, minWanted, hclusterWanted, merge, hard, large;
60         
61         void printData(ListVector*);
62         ListVector* mergeOPFs(map<string, int>, float);
63         void sortHclusterFiles(string, string);
64         vector<seqDist> getSeqs(ifstream&);
65 //    void createRabund(map<string, int>);
66
67 };
68
69 /**********************************************************************/
70
71 #endif
72
73
74