1 #ifndef KULCZYNSKICODY_H
2 #define KULCZYNSKICODY_H
5 * sharedkulczynskicody.h
8 * Created by Sarah Westcott on 3/24/09.
9 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
14 #include "calculator.h"
16 /***********************************************************************/
18 class KulczynskiCody : public Calculator {
21 KulczynskiCody() : Calculator("kulczynskicody", 1, false) {};
22 EstOutput getValues(SAbundVector*) {return data;};
23 EstOutput getValues(vector<SharedRAbundVector*>);
28 /***********************************************************************/