]> git.donarmstrong.com Git - mothur.git/blobdiff - simpsoneven.cpp
Revert to previous commit
[mothur.git] / simpsoneven.cpp
diff --git a/simpsoneven.cpp b/simpsoneven.cpp
new file mode 100644 (file)
index 0000000..e34534a
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ *  simpsoneven.cpp
+ *  Mothur
+ *
+ *  Created by Pat Schloss on 8/21/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+
+#include "simpsoneven.h"
+#include "invsimpson.h"
+
+/***********************************************************************/
+
+EstOutput SimpsonEven::getValues(SAbundVector* rank){
+       try {
+               data.resize(1,0);
+
+               InvSimpson* simp = new InvSimpson();
+               vector<double> invSimpData = simp->getValues(rank);
+               
+               data[0] = invSimpData[0] / double(rank->getNumBins());
+               
+               
+               return data;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "SimpsonEven", "getValues");
+               exit(1);
+       }
+}
+
+/***********************************************************************/
+