]> git.donarmstrong.com Git - mothur.git/blob - hclustercommand.h
fixed bug with tree reading
[mothur.git] / hclustercommand.h
1 #ifndef HCLUSTERCOMMAND_H
2 #define HCLUSTERCOMMAND_H
3
4 /*
5  *  hclustercommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 10/13/09.
9  *  Copyright 2009 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "hcluster.h"
15 #include "rabundvector.hpp"
16 #include "sabundvector.hpp"
17 #include "listvector.hpp"
18 #include "readcluster.h"
19
20 /******************************************************************/
21 //This command is an implementation of the HCluster algorythmn described in 
22 //ESPRIT: estimating species richness using large collections of 16S rRNA pyrosequences by
23 //Yijun Sun1,2,*, Yunpeng Cai2, Li Liu1, Fahong Yu1, Michael L. Farrell3, William McKendree3 
24 //and William Farmerie1 1 
25
26 //Interdisciplinary Center for Biotechnology Research, 2Department of Electrical and Computer Engineering, 
27 //University of Florida, Gainesville, FL 32610-3622 and 3Materials Technology Directorate, Air Force Technical 
28 //Applications Center, 1030 S. Highway A1A, Patrick AFB, FL 32925-3002, USA 
29 //Received January 28, 2009; Revised April 14, 2009; Accepted April 15, 2009 
30 /************************************************************/
31 class HClusterCommand : public Command {
32         
33 public:
34         HClusterCommand(string);
35         HClusterCommand();      
36         ~HClusterCommand(){}
37         
38         vector<string> setParameters();
39         string getCommandName()                 { return "hcluster";    }
40         string getCommandCategory()             { return "Clustering";  }
41         string getHelpString(); 
42         
43         int execute(); 
44         void help() { m->mothurOut(getHelpString()); }  
45         
46         
47 private:
48         HCluster* cluster;
49         ListVector* list;
50         RAbundVector* rabund;
51         RAbundVector oldRAbund;
52         ListVector oldList;
53         ReadCluster* read;
54         
55         bool abort, sorted, print_start, hard;
56         string method, fileroot, tag, distfile, format, phylipfile, columnfile, namefile, sort, showabund, timing, outputDir;
57         double cutoff;
58         int precision, length;
59         ofstream sabundFile, rabundFile, listFile;
60         time_t start;
61         unsigned long loops;
62         vector<string> outputNames;
63         
64         void printData(string label);
65 };
66
67 /************************************************************/
68
69 #endif