X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedthetan.cpp;h=644adee677820f92a7c8cf87c41d65908a1e957b;hp=6396d1dd667ff348b9d9d281a762d986726538d3;hb=a8e2df1b96a57f5f29576b08361b86a96a8eff4f;hpb=510b1cfc25cd79391d6973ca20c5ec25fb1bb3b2 diff --git a/sharedthetan.cpp b/sharedthetan.cpp index 6396d1d..644adee 100644 --- a/sharedthetan.cpp +++ b/sharedthetan.cpp @@ -14,20 +14,20 @@ EstOutput ThetaN::getValues(vector shared) { try { data.resize(1,0); - int Atotal, Btotal, tempA, tempB; + double Atotal, Btotal, tempA, tempB; Atotal = 0; Btotal = 0; - float numerator, denominator, thetaN, sumSharedA, sumSharedB, a, b, d; + double numerator, denominator, thetaN, sumSharedA, sumSharedB, a, b, d; numerator = 0.0; denominator = 0.0; thetaN = 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 theta 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); @@ -46,12 +46,12 @@ EstOutput ThetaN::getValues(vector shared) { if (isnan(thetaN) || isinf(thetaN)) { thetaN = 0; } - data[0] = thetaN; + data[0] = 1.0 - thetaN; return data; } catch(exception& e) { - errorOut(e, "ThetaN", "getValues"); + m->errorOut(e, "ThetaN", "getValues"); exit(1); } }