]> git.donarmstrong.com Git - mothur.git/blob - coverage.h
7e6430019551b7db843ba178815eb5fbfeef5ae8
[mothur.git] / coverage.h
1 #ifndef COVERAGE_H
2 #define COVERAGE_H
3
4 /*
5  *  coverage.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 "mothur.h"
14 #include "fullmatrix.h"
15 #include "globaldata.hpp"
16
17 using namespace std;
18
19 /***********************************************************************/
20
21 class Coverage  {
22         
23         public: 
24                 Coverage();
25                 ~Coverage(){};
26                 void getValues(FullMatrix*, float, vector< vector<float> >&);
27                 void getValues(FullMatrix*, float, vector< vector<float> >&, string);   //for random matrices
28                 
29         private:
30                 GlobalData* globaldata;
31                 int numGroups, numUserGroups;
32
33 };
34
35
36 /***********************************************************************/
37
38
39
40 #endif