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