]> git.donarmstrong.com Git - mothur.git/blob - strictchi2.h
fixed bug with trim.seqs- when a file is blank for a grouping mothur removed it,...
[mothur.git] / strictchi2.h
1 #ifndef STRICTCHI2_H
2 #define STRICTCHI2_H
3
4 /*
5  *  strictchi2.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 StrictChi2 : public Calculator  {
19         
20 public:
21         StrictChi2() :  Calculator("strictchi2", 1, false, true) {};  //the true means this calculator needs all groups to calculate the pair value
22         EstOutput getValues(SAbundVector*) {return data;};
23         EstOutput getValues(vector<SharedRAbundVector*>);
24 private:
25         
26 };
27
28 /***********************************************************************/
29
30 #endif