X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedjabund.cpp;h=d86fcb8ef65da974cc69b14be6417939bcded5a7;hp=d07076aaaad4247d73970f26d470ca0d01990adb;hb=b206f634aae1b4ce13978d203247fb64757d5482;hpb=510b1cfc25cd79391d6973ca20c5ec25fb1bb3b2 diff --git a/sharedjabund.cpp b/sharedjabund.cpp index d07076a..d86fcb8 100644 --- a/sharedjabund.cpp +++ b/sharedjabund.cpp @@ -20,14 +20,14 @@ EstOutput JAbund::getValues(vector 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]))); - if(data[0] > 1){data[0] = 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) { - errorOut(e, "JAbund", "getValues"); + m->errorOut(e, "JAbund", "getValues"); exit(1); } }