X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=boneh.h;fp=boneh.h;h=0000000000000000000000000000000000000000;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hp=d16ffa72ef48f0cd012bda5b1e00068f3b52afc3;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76;p=mothur.git diff --git a/boneh.h b/boneh.h deleted file mode 100644 index d16ffa7..0000000 --- a/boneh.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef BONEH_H -#define BONEH_H - -/* - * boneh.h - * Mothur - * - * Created by Thomas Ryabin on 5/13/09. - * Copyright 2009Schloss Lab UMASS Amherst. All rights reserved. - * - */ - -#include "calculator.h" - -/* This class implements the boneh calculator on single group. - It is a child of the calculator class. */ - -/***********************************************************************/ - -class Boneh : public Calculator { - -public: - Boneh(int size) : f(size), Calculator("boneh", 1, false) {}; - EstOutput getValues(SAbundVector*); - EstOutput getValues(vector) {return data;}; - string getCitation() { return "http://www.mothur.org/wiki/Boneh"; } -private: - double getV(double, double, double); - int f; -}; - - -/***********************************************************************/ - -#endif