X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=qstat.h;fp=qstat.h;h=0000000000000000000000000000000000000000;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hp=699ba55c4910e2c565f0c282ecb21f1096a9cd60;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76;p=mothur.git diff --git a/qstat.h b/qstat.h deleted file mode 100644 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) {return data;}; - string getCitation() { return "http://www.mothur.org/wiki/Qstat"; } - -private: - RAbundVector rdata; -}; - -/***********************************************************************/ - -#endif -