X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=uvest.cpp;h=f0ca81e99748534f3eff5b28d401e04ec8b116b6;hb=70491a12902e89b85cfa6b44a7b7fbe066ee2ac1;hp=afc602284e7aadb41c9859441157588ec21b6198;hpb=510b1cfc25cd79391d6973ca20c5ec25fb1bb3b2;p=mothur.git diff --git a/uvest.cpp b/uvest.cpp index afc6022..f0ca81e 100644 --- a/uvest.cpp +++ b/uvest.cpp @@ -29,7 +29,7 @@ EstOutput UVEst::getUVest(vector shared) { sumSharedA1 = the sum of all shared otus in A where B = 1 sumSharedB1 = the sum of all shared otus in B where A = 1 */ - 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); @@ -80,7 +80,7 @@ EstOutput UVEst::getUVest(vector shared) { return results; } catch(exception& e) { - errorOut(e, "UVEst", "getUVest"); + m->errorOut(e, "UVEst", "getUVest"); exit(1); } }