]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedsobs.cpp
Revert to previous commit
[mothur.git] / sharedsobs.cpp
diff --git a/sharedsobs.cpp b/sharedsobs.cpp
new file mode 100644 (file)
index 0000000..f9b5edd
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ *  sharedsobs.cpp
+ *  Dotur
+ *
+ *  Created by Sarah Westcott on 1/7/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+#include "sharedsobs.h"
+
+/***********************************************************************/
+//This returns the number of unique species observed in several groups.  
+//The shared vector is each groups sharedrabundvector.
+
+EstOutput SharedSobs::getValues(vector<SharedRAbundVector*> shared){
+       try {
+               data.resize(1,0);
+               double observed = 0;
+
+               //loop through the species in each group
+               for (int k = 0; k < shared[0]->getNumBins(); k++) {
+                       //if you have found a new species
+                       if (shared[0]->getAbundance(k) != 0) { observed++; } 
+                       else if ((shared[0]->getAbundance(k) == 0) && (shared[1]->getAbundance(k) != 0)) { observed++; }
+               }
+
+               data[0] = observed;
+               return data;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "SharedSobs", "getValues");
+               exit(1);
+       }
+}
+
+/***********************************************************************/