]> git.donarmstrong.com Git - mothur.git/blobdiff - invsimpson.h
Revert to previous commit
[mothur.git] / invsimpson.h
diff --git a/invsimpson.h b/invsimpson.h
new file mode 100644 (file)
index 0000000..1471a6c
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef INVSIMPSON
+#define INVSIMPSON
+
+/*
+ *  invsimpson.h
+ *  Mothur
+ *
+ *  Created by Pat Schloss on 8/20/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+
+
+#include "calculator.h"
+
+/***********************************************************************/
+
+class InvSimpson : public Calculator  {
+       
+public:
+       InvSimpson() : Calculator("invsimpson", 3, false) {};
+       EstOutput getValues(SAbundVector*);
+       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/InvSimpson"; }
+};
+
+/***********************************************************************/
+
+#endif