]> git.donarmstrong.com Git - mothur.git/blob - qstat.h
added concensus command and updated calcs
[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, false) {};
22
23         EstOutput getValues(SAbundVector*);
24         EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
25
26 private:
27         RAbundVector rdata;
28 };
29
30 /***********************************************************************/
31
32 #endif
33