]> git.donarmstrong.com Git - mothur.git/blob - heip.h
changed random forest output filename
[mothur.git] / heip.h
1 #ifndef HEIP
2 #define HEIP
3
4 /*
5  *  heip.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 8/21/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "calculator.h"
14
15 /***********************************************************************/
16
17 class Heip : public Calculator  {
18         
19 public:
20         Heip() : Calculator("heip", 1, false) {};
21         EstOutput getValues(SAbundVector*);
22         EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
23         string getCitation() { return "http://www.mothur.org/wiki/Heip"; }
24 };
25
26 /***********************************************************************/
27
28 #endif