]> git.donarmstrong.com Git - mothur.git/blob - sharedanderbergs.h
This contains Pat's bug fixes and updates. It represents mothur v.1.3.0
[mothur.git] / sharedanderbergs.h
1 #ifndef ANDERBERG_H
2 #define ANDERBERG_H
3 /*
4  *  sharedanderberg.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 Anderberg : public Calculator  {
17         
18         public:
19                 Anderberg() :  Calculator("anderberg", 1, false) {};
20                 EstOutput getValues(SAbundVector*) {return data;};
21                 EstOutput getValues(vector<SharedRAbundVector*>);
22         private:
23
24 };
25
26 /***********************************************************************/
27
28
29
30 #endif