]> git.donarmstrong.com Git - mothur.git/blobdiff - qstat.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / qstat.h
diff --git a/qstat.h b/qstat.h
deleted file mode 100644 (file)
index 699ba55..0000000
--- a/qstat.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef QSTAT_H
-#define QSTAT_H
-/*
- *  qstat.h
- *  Mothur
- *
- *  Created by Thomas Ryabin on 3/4/09.
- *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
- *
- */
-#include "calculator.h"
-
-/*This class implements the q statistic on single group. 
-It is a child of the calculator class.*/ 
-
-/***********************************************************************/
-
-class QStat : public Calculator  {
-       
-public:
-       QStat() : Calculator("qstat", 1, false) {};
-
-       EstOutput getValues(SAbundVector*);
-       EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
-       string getCitation() { return "http://www.mothur.org/wiki/Qstat"; }
-
-private:
-       RAbundVector rdata;
-};
-
-/***********************************************************************/
-
-#endif
-