]> git.donarmstrong.com Git - mothur.git/blobdiff - structpearson.h
Revert to previous commit
[mothur.git] / structpearson.h
diff --git a/structpearson.h b/structpearson.h
new file mode 100644 (file)
index 0000000..c0cbf9b
--- /dev/null
@@ -0,0 +1,34 @@
+#ifndef STRUCTPEARSON_H
+#define STRUCTPEARSON_H
+
+/*
+ *  structpearson.h
+ *  Mothur
+ *
+ *  Created by westcott on 12/15/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+
+
+#include "calculator.h"
+
+/***********************************************************************/
+
+class StructPearson : public Calculator  {
+       
+public:
+       StructPearson() :  Calculator("structpearson", 1, false) {};
+       EstOutput getValues(SAbundVector*) {return data;};
+       EstOutput getValues(vector<SharedRAbundVector*>);
+       string getCitation() { return "http://www.mothur.org/wiki/Structpearson"; }
+private:
+       
+};
+
+/***********************************************************************/
+
+#endif
+
+