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