X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedbraycurtis.cpp;h=3711ce77cbb312e5dc2ee2aba14e1856bb942d12;hb=6b32d112bb60e9f7eb6d4407a4eed4c49b67bced;hp=e8512d4b95bf3d2d32e058ca5c0b250d25609979;hpb=74844a60d80c6dd06e3fb02ee9b928424f9019b0;p=mothur.git diff --git a/sharedbraycurtis.cpp b/sharedbraycurtis.cpp index e8512d4..3711ce7 100644 --- a/sharedbraycurtis.cpp +++ b/sharedbraycurtis.cpp @@ -15,7 +15,7 @@ EstOutput BrayCurtis::getValues(vector shared) { try { data.resize(1,0); - int sumSharedA, sumSharedB, sumSharedAB, tempA, tempB; + double sumSharedA, sumSharedB, sumSharedAB, tempA, tempB; sumSharedA = 0; sumSharedB = 0; sumSharedAB = 0; /*Xi, Yi = abundance of the ith shared OTU in A and B @@ -24,7 +24,7 @@ EstOutput BrayCurtis::getValues(vector shared) { sumSharedAB = the sum of the minimum otus int all shared otus in AB. */ - 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 tempA = shared[0]->getAbundance(i); tempB = shared[1]->getAbundance(i); @@ -37,7 +37,7 @@ EstOutput BrayCurtis::getValues(vector shared) { else { sumSharedAB += tempB; } } - data[0] = (2 * sumSharedAB) / (float)( sumSharedA + sumSharedB); + data[0] = 1.0 - (2 * sumSharedAB) / (float)( sumSharedA + sumSharedB); if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }