]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedmorisitahorn.cpp
tie breaker fix to chimera.slayer
[mothur.git] / sharedmorisitahorn.cpp
index d5cdeeccd05dbe8570ad09c5617c3ef106a7be78..d52ead5e6fccbb784487fd188b12424035a30658 100644 (file)
@@ -14,9 +14,9 @@ EstOutput MorHorn::getValues(vector<SharedRAbundVector*> shared) {
        try {   
                data.resize(1,0);
                
-               float Atotal, Btotal, tempA, tempB;
+               double Atotal, Btotal, tempA, tempB;
                Atotal = 0; Btotal = 0; 
-               float  morhorn, sumSharedA, sumSharedB, a, b, d;
+               double  morhorn, sumSharedA, sumSharedB, a, b, d;
                morhorn = 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
@@ -48,7 +48,7 @@ EstOutput MorHorn::getValues(vector<SharedRAbundVector*> shared) {
                return data;
        }
        catch(exception& e) {
-               errorOut(e, "MorHorn", "getValues");
+               m->errorOut(e, "MorHorn", "getValues");
                exit(1);
        }
 }