X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedjest.cpp;h=237821a7d9d603c24aafbe44aca2fcdd5d668232;hp=9a1cfbb5a1567153628a1213a494c36242e1d763;hb=d1c97b8c04bb75faca1e76ffad60b37a4d789d3d;hpb=5a7b1d45e9604becce2410333fcc71de818e3782 diff --git a/sharedjest.cpp b/sharedjest.cpp index 9a1cfbb..237821a 100644 --- a/sharedjest.cpp +++ b/sharedjest.cpp @@ -34,12 +34,18 @@ EstOutput Jest::getValues(vector shared) { *chaoS1Sabund = shared[0]->getSAbundVector(); *chaoS2Sabund = shared[1]->getSAbundVector(); + + //chaoS1Sabund->print(cout); + //chaoS2Sabund->print(cout); S12 = sharedChao->getValues(shared); S1 = chaoS1->getValues(chaoS1Sabund); S2 = chaoS2->getValues(chaoS2Sabund); + + //cout << S12[0] << '\t' << S1[0] << '\t' << S2[0] << endl; data[0] = 1.0 - S12[0] / (float)(S1[0] + S2[0] - S12[0]); + //cout << data[0] << endl; if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }