]> git.donarmstrong.com Git - mothur.git/blob - amovacommand.h
Revert to previous commit
[mothur.git] / amovacommand.h
1 #ifndef AMOVACOMMAND_H
2 #define AMOVACOMMAND_H
3
4 /*
5  *  amovacommand.h
6  *  mothur
7  *
8  *  Created by westcott on 2/7/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 class GroupMap;
15
16 class AmovaCommand : public Command {
17         
18 public:
19         AmovaCommand(string);
20         AmovaCommand();
21         ~AmovaCommand() {}
22         
23         vector<string> setParameters();
24         string getCommandName()                 { return "amova";                                       }
25         string getCommandCategory()             { return "Hypothesis Testing";          }
26         string getHelpString(); 
27         string getCitation() { return "Anderson MJ (2001). A new method for non-parametric multivariate analysis of variance. Austral Ecol 26: 32-46.\nhttp://www.mothur.org/wiki/Amova"; }
28         string getDescription()         { return "analysis of molecular variance"; }
29         
30         int execute();
31         void help() { m->mothurOut(getHelpString()); }
32         
33 private:
34         double runAMOVA(ofstream&, map<string, vector<int> >, double);
35         double calcSSWithin(map<string, vector<int> >&);
36         double calcSSTotal(map<string, vector<int> >&);
37         map<string, vector<int> > getRandomizedGroups(map<string, vector<int> >);
38
39         bool abort;
40         vector<string> outputNames;
41
42         string outputDir, inputDir, designFileName, phylipFileName;
43         GroupMap* designMap;
44         vector< vector<double> > distanceMatrix;
45         int iters;
46         double experimentwiseAlpha;
47 };
48
49 #endif
50