5 * Created by westcott on 12/17/10.
6 * Copyright 2010 Schloss Lab. All rights reserved.
10 #include "memeuclidean.h"
12 /***********************************************************************/
13 EstOutput MemEuclidean::getValues(vector<SharedRAbundVector*> shared) {
18 for (int i = 0; i < shared[0]->getNumBins(); i++) {
19 int A = shared[0]->getAbundance(i);
20 int B = shared[1]->getAbundance(i);
30 if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }
35 m->errorOut(e, "MemEuclidean", "getValues");
39 /***********************************************************************/