]> git.donarmstrong.com Git - mothur.git/blob - uvest.h
When Pat tried to compile mothur in Ubuntu linux, there were a number of minor proble...
[mothur.git] / uvest.h
1 #ifndef UVEST_H
2 #define UVEST_H
3 /*
4  *  uvest.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/8/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11  
12 /* This class implements the UVEst estimator on two groups. 
13 It is used by sharedJAbund and SharedSorensonAbund. */
14  
15  
16 using namespace std;
17
18 #include <vector>
19 #include <iostream>
20 #include <fstream>
21 #include <cmath>
22
23 #include "sharedrabundvector.h"
24
25 typedef vector<double> EstOutput;
26
27 /***********************************************************************/
28 class UVEst {
29         public:
30                 EstOutput getUVest(SharedRAbundVector* shared1, SharedRAbundVector* shared2);           
31 };
32 /***********************************************************************/
33
34 #endif