]> git.donarmstrong.com Git - mothur.git/blob - homovacommand.h
Revert to previous commit
[mothur.git] / homovacommand.h
1 #ifndef HOMOVACOMMAND_H
2 #define HOMOVACOMMAND_H
3
4 /*
5  *  homovacommand.h
6  *  mothur
7  *
8  *  Created by westcott on 2/8/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15
16 //class GlobalData;
17 class GroupMap;
18
19 class HomovaCommand : public Command {
20         
21 public:
22         HomovaCommand(string);
23         HomovaCommand();
24         ~HomovaCommand(){}
25         
26         vector<string> setParameters();
27         string getCommandName()                 { return "homova";                                      }
28         string getCommandCategory()             { return "Hypothesis Testing";          }
29         string getHelpString(); 
30         string getCitation() { return "Stewart CN, Excoffier L (1996). Assessing population genetic structure and variability with RAPD data: Application to Vaccinium macrocarpon (American Cranberry). J Evol Biol 9: 153-71. \nhttp://www.mothur.org/wiki/Homova"; }
31         string getDescription()         { return "homova"; }
32
33         int execute();
34         void help() { m->mothurOut(getHelpString()); }  
35         
36 private:
37         double runHOMOVA(ofstream& , map<string, vector<int> >, double);
38         double calcSigleSSWithin(vector<int>);
39         double calcBValue(map<string, vector<int> >, vector<double>&);
40         map<string, vector<int> > getRandomizedGroups(map<string, vector<int> >);
41
42         bool abort;
43         vector<string> outputNames;
44
45         string outputDir, inputDir, designFileName, phylipFileName;
46         GroupMap* designMap;
47         vector< vector<double> > distanceMatrix;
48         int iters;
49         double experimentwiseAlpha;
50 };
51
52 #endif