X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedmorisitahorn.cpp;h=16a759089f079e426d302745e34575f55640f30c;hp=d52ead5e6fccbb784487fd188b12424035a30658;hb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;hpb=e4c80376cc4533f66c8dfc18f3e1a86a60ac17fe diff --git a/sharedmorisitahorn.cpp b/sharedmorisitahorn.cpp index d52ead5..16a7590 100644 --- a/sharedmorisitahorn.cpp +++ b/sharedmorisitahorn.cpp @@ -20,14 +20,14 @@ EstOutput MorHorn::getValues(vector shared) { morhorn = 0.0; sumSharedA = 0.0; sumSharedB = 0.0; a = 0.0; b = 0.0; d = 0.0; //get the total values we need to calculate the theta denominator sums - for (int i = 0; i < shared[0]->size(); i++) { + for (int i = 0; i < shared[0]->getNumBins(); i++) { //store in temps to avoid multiple repetitive function calls Atotal += shared[0]->getAbundance(i); Btotal += shared[1]->getAbundance(i); } //calculate the denominator sums - for (int j = 0; j < shared[0]->size(); j++) { + for (int j = 0; j < shared[0]->getNumBins(); j++) { //store in temps to avoid multiple repetitive function calls tempA = shared[0]->getAbundance(j); tempB = shared[1]->getAbundance(j); @@ -39,9 +39,9 @@ EstOutput MorHorn::getValues(vector shared) { d += relA * relB; } - morhorn = (2 * d) / (a + b); + morhorn = 1- (2 * d) / (a + b); - if (isnan(morhorn) || isinf(morhorn)) { morhorn = 0; } + if (isnan(morhorn) || isinf(morhorn)) { morhorn = 1; } data[0] = morhorn;