X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedjest.cpp;h=9a1cfbb5a1567153628a1213a494c36242e1d763;hb=a0f1fca79d2ddfa7ad36b4485039c68b5704fe8d;hp=0396f476d75acdfbfe44957dbaecbfa4e2f85594;hpb=510b1cfc25cd79391d6973ca20c5ec25fb1bb3b2;p=mothur.git diff --git a/sharedjest.cpp b/sharedjest.cpp index 0396f47..9a1cfbb 100644 --- a/sharedjest.cpp +++ b/sharedjest.cpp @@ -38,8 +38,8 @@ EstOutput Jest::getValues(vector shared) { S12 = sharedChao->getValues(shared); S1 = chaoS1->getValues(chaoS1Sabund); S2 = chaoS2->getValues(chaoS2Sabund); - - data[0] = S12[0] / (float)(S1[0] + S2[0] - S12[0]); + + data[0] = 1.0 - S12[0] / (float)(S1[0] + S2[0] - S12[0]); if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; } @@ -52,7 +52,7 @@ EstOutput Jest::getValues(vector shared) { return data; } catch(exception& e) { - errorOut(e, "Jest", "getValues"); + m->errorOut(e, "Jest", "getValues"); exit(1); } }