]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedthetan.cpp
added pairwise.seqs
[mothur.git] / sharedthetan.cpp
index 6396d1dd667ff348b9d9d281a762d986726538d3..361c7b26ebc52937a6fcd2f890da162a4a3cd9b3 100644 (file)
@@ -14,9 +14,9 @@ EstOutput ThetaN::getValues(vector<SharedRAbundVector*> shared) {
        try {   
                data.resize(1,0);
                
-               int Atotal, Btotal, tempA, tempB;
+               double Atotal, Btotal, tempA, tempB;
                Atotal = 0; Btotal = 0; 
-               float numerator, denominator, thetaN, sumSharedA, sumSharedB, a, b, d;
+               double numerator, denominator, thetaN, sumSharedA, sumSharedB, a, b, d;
                numerator = 0.0; denominator = 0.0; thetaN = 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
@@ -51,7 +51,7 @@ EstOutput ThetaN::getValues(vector<SharedRAbundVector*> shared) {
                return data;
        }
        catch(exception& e) {
-               errorOut(e, "ThetaN", "getValues");
+               m->errorOut(e, "ThetaN", "getValues");
                exit(1);
        }
 }