8 * Created by Thomas Ryabin on 5/18/09.
9 * Copyright 2009Schloss Lab UMASS Amherst. All rights reserved.
13 #include "calculator.h"
15 /* This class implements the shen calculator on single group.
16 It is a child of the calculator class. */
18 /***********************************************************************/
20 class Shen : public Calculator {
23 Shen(int size, int n) : f(size), abund(n), Calculator("shen", 1, false) {};
24 EstOutput getValues(SAbundVector*);
25 EstOutput getValues(vector<SharedRAbundVector*>) {return data;};
26 string getCitation() { return "http://www.mothur.org/wiki/Shen"; }
33 /***********************************************************************/