]> git.donarmstrong.com Git - mothur.git/blob - sharedkulczynski.h
sffinfo bug with flow grams right index when clipQualRight=0
[mothur.git] / sharedkulczynski.h
1 #ifndef KULCZYNSKI_H
2 #define KULCZYNSKI_H
3 /*
4  *  sharedkulczynski.h
5  *  Mothur
6  *
7  *  Created by John Westcott on 3/24/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12
13 #include "calculator.h"
14
15 /***********************************************************************/
16
17 class Kulczynski : public Calculator  {
18         
19 public:
20         Kulczynski() :  Calculator("kulczynski", 1, false) {};
21         EstOutput getValues(SAbundVector*) {return data;};
22         EstOutput getValues(vector<SharedRAbundVector*>);
23         string getCitation() { return "http://www.mothur.org/wiki/Kulczynski"; }
24 private:
25         
26 };
27
28 /***********************************************************************/
29
30 #endif