]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedjest.cpp
altered venn command to make use of sharedchao for any number of groups, fixed window...
[mothur.git] / sharedjest.cpp
index ba62e3355085a726f989885e0354594d4a053713..a1b506eb131f4f96f89d865ef4f27072ab150c20 100644 (file)
@@ -3,7 +3,7 @@
  *  Dotur
  *
  *  Created by Sarah Westcott on 1/8/09.
- *  Copyright 2009 Schloss Lab Umass Amherst. All rights reserved.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
  *
  */
  
@@ -14,7 +14,7 @@
 
 /***********************************************************************/
 
-EstOutput SharedJest::getValues(SharedRAbundVector* shared1, SharedRAbundVector* shared2) {
+EstOutput Jest::getValues(vector<SharedRAbundVector*> shared) {
        try {
                EstOutput S1, S2, S12;
                S12.resize(1,0);
@@ -32,10 +32,10 @@ EstOutput SharedJest::getValues(SharedRAbundVector* shared1, SharedRAbundVector*
                SAbundVector* chaoS1Sabund = new SAbundVector();
                SAbundVector* chaoS2Sabund = new SAbundVector();
                
-               *chaoS1Sabund = shared1->getSAbundVector();
-               *chaoS2Sabund = shared2->getSAbundVector();
+               *chaoS1Sabund = shared[0]->getSAbundVector();
+               *chaoS2Sabund = shared[1]->getSAbundVector();
                
-               S12 = sharedChao->getValues(shared1, shared2);
+               S12 = sharedChao->getValues(shared);
                S1 = chaoS1->getValues(chaoS1Sabund);
                S2 = chaoS2->getValues(chaoS2Sabund);
                                
@@ -46,14 +46,13 @@ EstOutput SharedJest::getValues(SharedRAbundVector* shared1, SharedRAbundVector*
                return data;
        }
        catch(exception& e) {
-               cout << "Standard Error: " << e.what() << " has occurred in the SharedJest class Function getValues. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
+               cout << "Standard Error: " << e.what() << " has occurred in the Jest class Function getValues. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
                exit(1);
        }
        catch(...) {
-               cout << "An unknown error has occurred in the SharedJest class Function getValues. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
+               cout << "An unknown error has occurred in the Jest class Function getValues. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
                exit(1);
        }       
 }
-/***********************************************************************/
-
 
+/***********************************************************************/