]> git.donarmstrong.com Git - mothur.git/blobdiff - shen.cpp
Revert to previous commit
[mothur.git] / shen.cpp
diff --git a/shen.cpp b/shen.cpp
new file mode 100644 (file)
index 0000000..dac12bd
--- /dev/null
+++ b/shen.cpp
@@ -0,0 +1,42 @@
+/*
+ *  shen.cpp
+ *  Mothur
+ *
+ *  Created by Thomas Ryabin on 5/18/09.
+ *  Copyright 2009Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+#include "shen.h"
+#include "ace.h"
+
+       
+/***********************************************************************/      
+EstOutput Shen::getValues(SAbundVector* rank){
+
+       try {
+               
+               data.resize(1,0);
+               
+               double n = (double)rank->getNumSeqs();
+               double f1 = (double)rank->get(1);
+               
+               Ace* calc = new Ace(abund);
+               EstOutput ace = calc->getValues(rank);
+               
+               double f0 = ace[0]-rank->getNumBins();
+               
+               data[0] = f0 * (1 - pow(1 - f1/n/f0, f));
+               
+               delete calc;
+               
+               return data;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "Shen", "getValues");
+               exit(1);
+       }
+}
+
+
+/***********************************************************************/