7 * Created by Sarah Westcott on 3/23/09.
8 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
12 #include "calculator.h"
14 /***********************************************************************/
16 class Anderberg : public Calculator {
19 Anderberg() : Calculator("anderberg", 1, false) {};
20 EstOutput getValues(SAbundVector*) {return data;};
21 EstOutput getValues(vector<SharedRAbundVector*>);
22 string getCitation() { return "http://www.mothur.org/wiki/Anderberg"; }
27 /***********************************************************************/