]> git.donarmstrong.com Git - mothur.git/blob - sharedochiai.h
fixes while testing 1.33.0
[mothur.git] / sharedochiai.h
1 #ifndef OCHIAI_H
2 #define OCHIAI_H
3 /*
4  *  sharedochiai.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 3/23/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "calculator.h"
13
14 /***********************************************************************/
15
16 class Ochiai : public Calculator  {
17         
18 public:
19         Ochiai() :  Calculator("ochiai", 1, false) {};
20         EstOutput getValues(SAbundVector*) {return data;};
21         EstOutput getValues(vector<SharedRAbundVector*>);
22         string getCitation() { return "http://www.mothur.org/wiki/ochiai"; }
23 private:
24         
25 };
26
27 /***********************************************************************/
28
29
30 #endif