]> git.donarmstrong.com Git - mothur.git/blobdiff - chao1.h
Revert to previous commit
[mothur.git] / chao1.h
diff --git a/chao1.h b/chao1.h
new file mode 100644 (file)
index 0000000..21224eb
--- /dev/null
+++ b/chao1.h
@@ -0,0 +1,31 @@
+#ifndef CHAO1_H
+#define CHAO1_H
+/*
+ *  chao1.h
+ *  Dotur
+ *
+ *  Created by Sarah Westcott on 1/7/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+#include "calculator.h"
+
+/* This class implements the Ace estimator on single group. 
+It is a child of the calculator class. */
+
+/***********************************************************************/
+
+class Chao1 : public Calculator  {
+       
+public: 
+       Chao1() : Calculator("chao", 3, false) {};
+       EstOutput getValues(SAbundVector*);     
+       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
+       string getCitation() { return "http://www.mothur.org/wiki/Chao"; }
+};
+
+
+/***********************************************************************/
+
+#endif