]> git.donarmstrong.com Git - mothur.git/blob - qstat.h
modified some calculators and other stuff - pds
[mothur.git] / qstat.h
1 #ifndef QSTAT_H
2 #define QSTAT_H
3 /*
4  *  qstat.h
5  *  Mothur
6  *
7  *  Created by Thomas Ryabin on 3/4/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11 #include "calculator.h"
12
13 /*This class implements the q statistic on single group. 
14 It is a child of the calculator class.*/ 
15
16 /***********************************************************************/
17
18 class QStat : public Calculator  {
19         
20 public:
21         QStat() : Calculator("qstat", 1) {};
22         EstOutput getValues(SAbundVector*);
23         EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;};
24
25 private:
26         RAbundVector rdata;
27 };
28
29 /***********************************************************************/
30
31 #endif
32