]> git.donarmstrong.com Git - mothur.git/blobdiff - rarecalc.h
changed raredisplay to use vectors instead of files
[mothur.git] / rarecalc.h
index 1079b96708bf8a5fc2f17e54828a22f270493601..a7ad2b733b133bd65a62977c33c4a1e7cc691bb1 100644 (file)
@@ -11,8 +11,6 @@
 
 /* This class is not currently used by Mothur */
 
-
-#include <Carbon/Carbon.h>
 #include "calculator.h"
 
 /***********************************************************************/
@@ -21,7 +19,7 @@ class RareCalc {
 public:
        RareCalc(RAbundVector* b) : bins(b), numSeqs(b->getNumSeqs()), maxRank(b->getMaxRank()), numBins(b->getNumBins()) {     bMatrix = binomial(numSeqs+1);  };
        EstOutput getValues(int);
-       string getName()        {       return "RareCalc";      }
+       string getName()        {       return "rarecalc";      }
 private:
        RAbundVector* bins;
        vector<vector<double> > bMatrix;