]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedmorisitahorn.cpp
added modify names parameter to set.dir
[mothur.git] / sharedmorisitahorn.cpp
index bd4923f32ddf4337ce6f8570fd57fcd199ccaf6f..16a759089f079e426d302745e34575f55640f30c 100644 (file)
@@ -20,14 +20,14 @@ EstOutput MorHorn::getValues(vector<SharedRAbundVector*> shared) {
                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
-               for (int i = 0; i < shared[0]->size(); i++) {
+               for (int i = 0; i < shared[0]->getNumBins(); i++) {
                        //store in temps to avoid multiple repetitive function calls
                        Atotal += shared[0]->getAbundance(i);
                        Btotal += shared[1]->getAbundance(i);
                }
                
                //calculate the denominator sums
-               for (int j = 0; j < shared[0]->size(); j++) {
+               for (int j = 0; j < shared[0]->getNumBins(); j++) {
                        //store in temps to avoid multiple repetitive function calls
                        tempA = shared[0]->getAbundance(j);
                        tempB = shared[1]->getAbundance(j);