]> git.donarmstrong.com Git - mothur.git/blobdiff - qstat.h
added the Calculators Thomas made in the fall. Added parameter and command error...
[mothur.git] / qstat.h
diff --git a/qstat.h b/qstat.h
new file mode 100644 (file)
index 0000000..3911dc1
--- /dev/null
+++ b/qstat.h
@@ -0,0 +1,32 @@
+#ifndef QSTAT_H
+#define QSTAT_H
+/*
+ *  qstat.h
+ *  Mothur
+ *
+ *  Created by Thomas Ryabin on 3/4/09.
+ *  Copyright 2009 __MyCompanyName__. All rights reserved.
+ *
+ */
+#include "calculator.h"
+
+/*This class implements the LogSD estimator on single group. 
+It is a child of the calculator class.*/ 
+
+/***********************************************************************/
+
+class QStat : public Calculator  {
+       
+public:
+       QStat() : Calculator("qstat", 3) {};
+       EstOutput getValues(SAbundVector*);
+       EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*) {return data;};
+
+private:
+       RAbundVector rdata;
+};
+
+/***********************************************************************/
+
+#endif
+