]> git.donarmstrong.com Git - mothur.git/blob - anosimcommand.h
4b650705ace41501f3d85d672638a47f48a91ce3
[mothur.git] / anosimcommand.h
1 #ifndef ANOSIMCOMMAND_H
2 #define ANOSIMCOMMAND_H
3
4 /*
5  *  anosimcommand.h
6  *  mothur
7  *
8  *  Created by westcott on 2/14/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15
16 class GroupMap;
17
18 class AnosimCommand : public Command {
19         
20 public:
21         AnosimCommand(string);
22         AnosimCommand();
23         ~AnosimCommand(){}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "anosim";                                      }
27         string getCommandCategory()             { return "Hypothesis Testing";          }
28         string getHelpString(); 
29         string getCitation() { return "Clarke, K. R. (1993). Non-parametric multivariate analysis of changes in community structure. _Australian Journal of Ecology_ 18, 117-143.\nhttp://www.mothur.org/wiki/Anosim"; }
30         string getDescription()         { return "analysis of similarity"; }
31         
32         int execute();
33         void help() { m->mothurOut(getHelpString()); }
34         
35 private:
36         bool abort;
37         GroupMap* designMap;
38         string outputDir, inputDir, designFileName, phylipFileName;
39         
40         vector<vector<double> > convertToRanks(vector<vector<double> >);
41         double calcR(vector<vector<double> >, map<string, vector<int> >);
42         map<string, vector<int> > getRandomizedGroups(map<string, vector<int> >);
43         double runANOSIM(ofstream&, vector<vector<double> >, map<string, vector<int> >, double);
44         
45         vector< vector<double> > distanceMatrix;
46         vector<string> outputNames;
47         int iters;
48         double experimentwiseAlpha;
49         vector< vector<string> > namesOfGroupCombos;
50         
51         
52 };
53
54 #endif
55
56
57