]> git.donarmstrong.com Git - mothur.git/blob - sharedlennon.h
added sharedbraycurtis, sharedmorisirahorn, sharedkulczynski, sharedkulczynskicody...
[mothur.git] / sharedlennon.h
1 #ifndef SHAREDLENNON_H
2 #define SHAREDLENNON_H
3
4 /*
5  *  sharedlennon.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 3/24/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13
14 #include "calculator.h"
15
16 /***********************************************************************/
17
18 class SharedLennon : public Calculator  {
19         
20 public:
21         SharedLennon() :  Calculator("SharedLennon", 1) {};
22         EstOutput getValues(SAbundVector*) {return data;};
23         EstOutput getValues(SharedRAbundVector*, SharedRAbundVector*);
24 private:
25         
26 };
27
28 /***********************************************************************/
29
30
31
32 #endif