X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedsorest.cpp;h=b9ab0501bc5f8f7fa000b16b14f79bfad237b8cf;hp=680c4adcf380369ef0ab0bcfe85438666adceffe;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=510b1cfc25cd79391d6973ca20c5ec25fb1bb3b2 diff --git a/sharedsorest.cpp b/sharedsorest.cpp index 680c4ad..b9ab050 100644 --- a/sharedsorest.cpp +++ b/sharedsorest.cpp @@ -38,7 +38,7 @@ EstOutput SorEst::getValues(vector shared) { S1 = chaoS1->getValues(chaoS1Sabund); S2 = chaoS2->getValues(chaoS2Sabund); - data[0] = (2 * S12[0]) / (float)(S1[0] + S2[0]); + data[0] = 1.0-(2 * S12[0]) / (float)(S1[0] + S2[0]); if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; } @@ -51,7 +51,7 @@ EstOutput SorEst::getValues(vector shared) { return data; } catch(exception& e) { - errorOut(e, "SorEst", "getValues"); + m->errorOut(e, "SorEst", "getValues"); exit(1); } }