]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedsorabund.cpp
Revert to previous commit
[mothur.git] / sharedsorabund.cpp
diff --git a/sharedsorabund.cpp b/sharedsorabund.cpp
new file mode 100644 (file)
index 0000000..9a1bd63
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ *  sharedsorabund.cpp
+ *  Dotur
+ *
+ *  Created by Sarah Westcott on 1/8/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+#include "sharedsorabund.h"
+
+/***********************************************************************/
+
+EstOutput SorAbund::getValues(vector<SharedRAbundVector*> shared) {
+       try {
+               EstOutput UVest;
+               UVest.resize(2,0);
+               data.resize(1,0);
+               
+               UVest = uv->getUVest(shared);
+               
+               //UVest[0] is Uest, UVest[1] is Vest
+               data[0] = (2 * UVest[0] * UVest[1]) / ((float)(UVest[0] + UVest[1]));
+               
+               if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }
+               data[0] = 1-data[0];
+               
+               return data;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "SorAbund", "getValues");
+               exit(1);
+       }
+}
+
+/***********************************************************************/
+