X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=gower.h;fp=gower.h;h=a04ef10c23388e74b3e35b146886c2921c670f28;hp=0000000000000000000000000000000000000000;hb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;hpb=1b73ff67c83892a025e597dabd9df6fe7b58206a diff --git a/gower.h b/gower.h new file mode 100644 index 0000000..a04ef10 --- /dev/null +++ b/gower.h @@ -0,0 +1,32 @@ +#ifndef GOWER_H +#define GOWER_H + +/* + * gower.h + * Mothur + * + * Created by westcott on 12/17/10. + * Copyright 2010 Schloss Lab. All rights reserved. + * + */ + + +#include "calculator.h" + +/***********************************************************************/ + +class Gower : public Calculator { + +public: + Gower() : Calculator("gower", 1, false, true) {}; //the true means this calculator needs all groups to calculate the pair value + EstOutput getValues(SAbundVector*) {return data;}; + EstOutput getValues(vector); + string getCitation() { return "http://www.mothur.org/wiki/Gower"; } +private: + +}; + +/***********************************************************************/ + +#endif +