]> git.donarmstrong.com Git - mothur.git/blob - libshuffcommand.h
*** empty log message ***
[mothur.git] / libshuffcommand.h
1 #ifndef LIBSHUFFCOMMAND_H
2 #define LIBSHUFFCOMMAND_H
3
4 /*
5  *  libshuffcommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 3/9/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "fullmatrix.h"
15 #include "libshuff.h"
16
17 using namespace std;
18
19 class GlobalData;
20
21 class LibShuffCommand : public Command {
22         
23         public:
24                 LibShuffCommand();      
25                 ~LibShuffCommand(){};
26                 int execute();  
27         
28         private:
29                 vector<string> groupNames;
30                 
31                 void setGroups();
32                 void printCoverageFile();
33                 void printSummaryFile();
34
35                 GlobalData* globaldata;
36                 FullMatrix* matrix;
37                 Libshuff* form;
38                 float cutOff, step;
39                 int numGroups, numComp, iters;
40                 string coverageFile, summaryFile;
41                 vector<vector<int> > pValueCounts;
42                 vector<vector<double> > savedDXYValues;
43                 vector<vector<vector<double> > > savedMinValues;
44 };
45
46 #endif