]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedjabund.cpp
fixes while testing 1.33.0
[mothur.git] / sharedjabund.cpp
index b969e24f4286e794894b04c9897f49a593f67317..d86fcb8ef65da974cc69b14be6417939bcded5a7 100644 (file)
@@ -20,20 +20,16 @@ EstOutput JAbund::getValues(vector<SharedRAbundVector*> shared) {
                UVest = uv->getUVest(shared);
                
                //UVest[0] is Uest UVest[1] is Vest
-               data[0] = (UVest[0] * UVest[1]) / ((float)(UVest[0] + UVest[1] - (UVest[0] * UVest[1])));
-               
+               data[0] = 1.0-(UVest[0] * UVest[1]) / ((float)(UVest[0] + UVest[1] - (UVest[0] * UVest[1])));
+               if(data[0] > 1){data[0] = 0;    }
                if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }
                
                return data;
        }
        catch(exception& e) {
-               cout << "Standard Error: " << e.what() << " has occurred in the JAbund class Function getValues. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
+               m->errorOut(e, "JAbund", "getValues");
                exit(1);
        }
-       catch(...) {
-               cout << "An unknown error has occurred in the JAbund class Function getValues. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
-               exit(1);
-       }       
 }
 
 /***********************************************************************/