]> git.donarmstrong.com Git - mothur.git/blobdiff - sabundvector.cpp
added shannonrange calc.
[mothur.git] / sabundvector.cpp
index 1bceec210779221ce0dfce33886b177e5250efd8..0b3dde6fe9312b72d2f08a716b5b61ee01cca64d 100644 (file)
@@ -54,13 +54,12 @@ SAbundVector::SAbundVector(ifstream& f): DataVector(), maxRank(0), numBins(0), n
        try {
                int hold;
                f >> label >> hold;
-       
+        
                data.assign(hold+1, 0);
                int inputData;
        
                for(int i=1;i<=hold;i++){
                        f >> inputData;
-
                        set(i, inputData);
                }