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