X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=shen.h;h=ad0eda47c54b7d8c0f081e908471ab16eb85d717;hp=4a97805e9b293fab7e0b6cb3854dead3cf01c2c1;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=2bb51be6ba6a3fa741f2131d328cf21c395b506a diff --git a/shen.h b/shen.h index 4a97805..ad0eda4 100644 --- a/shen.h +++ b/shen.h @@ -6,7 +6,7 @@ * Mothur * * Created by Thomas Ryabin on 5/18/09. - * Copyright 2009 __MyCompanyName__. All rights reserved. + * Copyright 2009Schloss Lab UMASS Amherst. All rights reserved. * */ @@ -20,11 +20,13 @@ class Shen : public Calculator { public: - Shen(int size) : m(size), Calculator("shen", 1, false) {}; + 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 m; + int f; + int abund; };