]> git.donarmstrong.com Git - mothur.git/blob - hclustercommand.h
added citation function to commands
[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         string getCitation() { return "http://www.mothur.org/wiki/Hcluster"; }
43         
44         int execute(); 
45         void help() { m->mothurOut(getHelpString()); }  
46         
47         
48 private:
49         HCluster* cluster;
50         ListVector* list;
51         RAbundVector* rabund;
52         RAbundVector oldRAbund;
53         ListVector oldList;
54         ReadCluster* read;
55         
56         bool abort, sorted, print_start, hard;
57         string method, fileroot, tag, distfile, format, phylipfile, columnfile, namefile, sort, showabund, timing, outputDir;
58         double cutoff;
59         int precision, length;
60         ofstream sabundFile, rabundFile, listFile;
61         time_t start;
62         unsigned long loops;
63         vector<string> outputNames;
64         
65         void printData(string label);
66 };
67
68 /************************************************************/
69
70 #endif