]> git.donarmstrong.com Git - mothur.git/blob - smithwilson.h
fixes while testing 1.33.0
[mothur.git] / smithwilson.h
1 #ifndef SMITHWILSON
2 #define SMITHWILSON
3
4 /*
5  *  smithwilson.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 SmithWilson : public Calculator  {
18         
19 public:
20         SmithWilson() : Calculator("smithwilson", 1, false) {};
21         EstOutput getValues(SAbundVector*);
22         EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
23         string getCitation() { return "http://www.mothur.org/wiki/Smithwilson"; }
24 };
25
26 /***********************************************************************/
27
28 #endif