]> git.donarmstrong.com Git - mothur.git/blobdiff - raredisplay.cpp
fixed some bugs and added scriptengine
[mothur.git] / raredisplay.cpp
index 812626604483ca0ab0d5978e2ea8c9542d394fc6..61362c78515b1ebaf3e0b006782960bfb33ebb91 100644 (file)
@@ -15,6 +15,7 @@ void RareDisplay::init(string label){
        try {
                this->label = label;
                if(nIters != 1){
+                       tempInFile.clear();
                        openOutputFile(tempOutName, tempOutFile);
                        openInputFile(tempInName, tempInFile);
                }
@@ -65,12 +66,12 @@ void RareDisplay::update(SAbundVector* rank){
                cout << "An unknown error has occurred in the RareDisplay class function update. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
                exit(1);
        }
-};
+}
 
 /***********************************************************************/
-void RareDisplay::update(SharedRAbundVector* shared1, SharedRAbundVector* shared2, int numSeqs, int numGroupComb) {
+void RareDisplay::update(vector<SharedRAbundVector*> shared, int numSeqs, int numGroupComb) {
        try {
-               vector<double> data = estimate->getValues(shared1, shared2); 
+               vector<double> data = estimate->getValues(shared); 
                double newNSeqs = data[0];
                
                if(nIters != 1){
@@ -98,7 +99,7 @@ void RareDisplay::update(SharedRAbundVector* shared1, SharedRAbundVector* shared
                cout << "An unknown error has occurred in the RareDisplay class function update. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
                exit(1);
        }
-};
+}
 
 /***********************************************************************/