7 * Created by John Westcott on 3/24/09.
8 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
13 #include "calculator.h"
15 /***********************************************************************/
17 class Kulczynski : public Calculator {
20 Kulczynski() : Calculator("kulczynski", 1, false) {};
21 EstOutput getValues(SAbundVector*) {return data;};
22 EstOutput getValues(vector<SharedRAbundVector*>);
23 string getCitation() { return "http://www.mothur.org/wiki/Kulczynski"; }
28 /***********************************************************************/