1 #ifndef STRUCTCHI2_H
2 #define STRUCTCHI2_H
3 
4 /*
5  *  structchi2.h
6  *  Mothur
7  *
8  *  Created by westcott on 12/17/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12 
13 
14 #include "calculator.h"
15 
16 /***********************************************************************/
17 
18 class StructChi2 : public Calculator  {
19 
20 public:
StructChi2()21 	StructChi2() :  Calculator("structchi2", 1, false, true) {};  //the true means this calculator needs all groups to calculate the pair value
getValues(SAbundVector *)22 	EstOutput getValues(SAbundVector*) {return data;};
23 	EstOutput getValues(vector<SharedRAbundVector*>);
getCitation()24 	string getCitation() { return "http://www.mothur.org/wiki/Structchi2"; }
25 private:
26 
27 };
28 
29 /***********************************************************************/
30 
31 #endif
32 
33 
34 
35 
36