5 * Created by Sarah Westcott on 1/8/09.
6 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10 #include "sharedjabund.h"
12 /***********************************************************************/
14 EstOutput JAbund::getValues(vector<SharedRAbundVector*> shared) {
20 UVest = uv->getUVest(shared);
22 //UVest[0] is Uest UVest[1] is Vest
23 data[0] = (UVest[0] * UVest[1]) / ((float)(UVest[0] + UVest[1] - (UVest[0] * UVest[1])));
24 if(data[0] > 1){data[0] = 1; }
25 if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }
30 errorOut(e, "JAbund", "getValues");
35 /***********************************************************************/