]> git.donarmstrong.com Git - mothur.git/blob - qstat.h
changing command name classify.shared to classifyrf.shared
[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         string getCitation() { return "http://www.mothur.org/wiki/Qstat"; }
26
27 private:
28         RAbundVector rdata;
29 };
30
31 /***********************************************************************/
32
33 #endif
34