1 #ifndef KSTEST_H
2 #define KSTEST_H
3 /*
4  *  kstest.h
5  *  Mothur
6  *
7  *  Created by Thomas Ryabin on 3/6/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11 #include "calculator.h"
12 
13 /*This class implements the KSTest estimator on 2 groups.
14 It is a child of the calculator class.*/
15 
16 /***********************************************************************/
17 
18 class KSTest : public Calculator  {
19 
20 public:
KSTest()21 	KSTest() : Calculator("kstest", 3, false) {};
getValues(SAbundVector *)22 	EstOutput getValues(SAbundVector*) {return data;};
23 	EstOutput getValues(vector<SharedRAbundVector*>);
getCitation()24 	string getCitation() { return "http://www.mothur.org/wiki/Kstest"; }
25 private:
26 };
27 
28 /***********************************************************************/
29 
30 #endif
31