]> git.donarmstrong.com Git - mothur.git/blobdiff - rarecalc.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / rarecalc.h
diff --git a/rarecalc.h b/rarecalc.h
deleted file mode 100644 (file)
index 8a0fb72..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef RARECALC_H
-#define RARECALC_H
-/*
- *  rarecalc.h
- *  Dotur
- *
- *  Created by Sarah Westcott on 1/7/09.
- *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
- *
- */
-
-/* This class is not currently used by Mothur */
-
-#include "calculator.h"
-
-/***********************************************************************/
-class RareCalc {
-
-public:
-       RareCalc(RAbundVector* b) : bins(b), numSeqs(b->getNumSeqs()), maxRank(b->getMaxRank()), numBins(b->getNumBins()) {     m = MothurOut::getInstance(); bMatrix = m->binomial(numSeqs+1); }
-       EstOutput getValues(int);
-       string getName()        {       return "rarecalc";      }
-private:
-       RAbundVector* bins;
-       vector<vector<double> > bMatrix;
-       int numSeqs, maxRank, numBins;
-       MothurOut* m;
-};
-
-/***********************************************************************/
-
-#endif