]> git.donarmstrong.com Git - mothur.git/blob - homovacommand.h
added sets to amova and homova commands. added oligos to make.contigs. added metadat...
[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 getOutputFileNameTag(string, string);
30         string getHelpString(); 
31         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"; }
32         string getDescription()         { return "homova"; }
33
34         int execute();
35         void help() { m->mothurOut(getHelpString()); }  
36         
37 private:
38         double runHOMOVA(ofstream& , map<string, vector<int> >, double);
39         double calcSigleSSWithin(vector<int>);
40         double calcBValue(map<string, vector<int> >, vector<double>&);
41         map<string, vector<int> > getRandomizedGroups(map<string, vector<int> >);
42
43         bool abort;
44         vector<string> outputNames, Sets;
45
46         string outputDir, inputDir, designFileName, phylipFileName;
47         GroupMap* designMap;
48         vector< vector<double> > distanceMatrix;
49         int iters;
50         double experimentwiseAlpha;
51 };
52
53 #endif