]> git.donarmstrong.com Git - mothur.git/blob - whittaker.h
added clearcut source to mothur, fixed mislabeled sharedcalcs
[mothur.git] / whittaker.h
1 #ifndef WHITTAKER_H
2 #define WHITTAKER_H
3 /*
4  *  whittaker.h
5  *  Mothur
6  *
7  *  Created by Thomas Ryabin on 3/13/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11 #include "calculator.h"
12
13 /*This class implements the Whittaker estimator on 2 groups. 
14  It is a child of the calculator class.*/ 
15
16 /***********************************************************************/
17
18 class Whittaker : public Calculator  {
19         
20 public:
21         Whittaker() : Calculator("whittaker", 1, false) {};
22         EstOutput getValues(SAbundVector*) {return data;};
23         EstOutput getValues(vector<SharedRAbundVector*>);
24
25 };
26
27 /***********************************************************************/
28
29 #endif