]> git.donarmstrong.com Git - mothur.git/blobdiff - shen.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / shen.h
diff --git a/shen.h b/shen.h
deleted file mode 100644 (file)
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<SharedRAbundVector*>) {return data;};
-       string getCitation() { return "http://www.mothur.org/wiki/Shen"; }
-private:
-       int f;
-       int abund;
-};
-
-
-/***********************************************************************/
-
-#endif