]> git.donarmstrong.com Git - mothur.git/blob - sharedbraycurtis.h
fixes while testing 1.33.0
[mothur.git] / sharedbraycurtis.h
1 #ifndef BRAYCURTIS_H
2 #define BRAYCURTIS_H
3 /*
4  *  sharedbraycurtis.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 3/24/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11 #include "calculator.h"
12
13 /***********************************************************************/
14
15 class BrayCurtis : public Calculator  {
16         
17 public:
18         BrayCurtis() :  Calculator("braycurtis", 1, false) {};
19         EstOutput getValues(SAbundVector*) {return data;};
20         EstOutput getValues(vector<SharedRAbundVector*>);
21         string getCitation() { return "http://www.mothur.org/wiki/Braycurtis"; }
22 private:
23         
24 };
25
26 /***********************************************************************/
27
28
29
30 #endif