1 #ifndef STRUCTPEARSON_H
2 #define STRUCTPEARSON_H
3 
4 /*
5  *  structpearson.h
6  *  Mothur
7  *
8  *  Created by westcott on 12/15/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12 
13 
14 
15 #include "calculator.h"
16 
17 /***********************************************************************/
18 
19 class StructPearson : public Calculator  {
20 
21 public:
StructPearson()22 	StructPearson() :  Calculator("structpearson", 1, false) {};
getValues(SAbundVector *)23 	EstOutput getValues(SAbundVector*) {return data;};
24 	EstOutput getValues(vector<SharedRAbundVector*>);
getCitation()25 	string getCitation() { return "http://www.mothur.org/wiki/Structpearson"; }
26 private:
27 
28 };
29 
30 /***********************************************************************/
31 
32 #endif
33 
34 
35