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 #include "mothurout.h"
17 #include "calculator.h"
18 
19 typedef vector<double> EstOutput;
20 
21 /***********************************************************************/
22 class UVEst {
23 	public:
UVEst()24 		UVEst() { m = MothurOut::getInstance(); }
~UVEst()25         ~UVEst() {}
26 
27 		EstOutput getUVest(vector<SharedRAbundVector*>);
28 
29 	private:
30 		MothurOut* m;
31 };
32 /***********************************************************************/
33 
34 #endif
35