]> git.donarmstrong.com Git - mothur.git/blob - pcacommand.h
sffinfo bug with flow grams right index when clipQualRight=0
[mothur.git] / pcacommand.h
1 #ifndef PCACOMMAND_H
2 #define PCACOMMAND_H
3
4 /*
5  *  pcacommand.h
6  *  mothur
7  *
8  *  Created by westcott on 1/7/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "linearalgebra.h"
15 #include "sharedrabundfloatvector.h"
16
17 /*****************************************************************/
18 class PCACommand : public Command {
19         
20 public:
21         PCACommand(string);     
22         PCACommand();
23         ~PCACommand() {}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "pca";                                 }
27         string getCommandCategory()             { return "Hypothesis Testing";  }
28         
29         string getHelpString(); 
30     string getOutputPattern(string);    
31         string getCitation() { return "McCune B, Grace JB, Urban DL (2002). Analysis of ecological communities. MjM Software Design: Gleneden Beach, OR. \nLegendre P, Legendre L (1998). Numerical Ecology. Elsevier: New York. \nhttp://www.mothur.org/wiki/Pca"; }
32         string getDescription()         { return "pca"; }
33
34         int execute(); 
35         void help() { m->mothurOut(getHelpString()); }  
36         
37         
38 private:
39
40         bool abort, metric;
41         string outputDir, mode, inputFile, label, groups, sharedfile, relabundfile;
42         vector<string> outputNames, Groups;
43         set<string> labels;
44         LinearAlgebra linearCalc;
45         
46         //vector< vector<double> > createMatrix(vector<SharedRAbundFloatVector*>);
47         int process(vector<SharedRAbundFloatVector*>&);
48         void output(string, string, vector<string>, vector<vector<double> >&, vector<double>);
49         
50 };
51
52 /*****************************************************************/
53
54 #endif
55
56