]> git.donarmstrong.com Git - mothur.git/blob - sharedace.h
changing command name classify.shared to classifyrf.shared
[mothur.git] / sharedace.h
1 #ifndef SHAREDACE_H
2 #define SHAREDACE_H
3 /*
4  *  sharedace.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/8/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 /* This class implements the SharedAce estimator on two groups. 
13 It is a child of the calculator class. */
14
15 #include "calculator.h"
16
17 /***********************************************************************/
18
19 class SharedAce : public Calculator  {
20         
21 public:
22         SharedAce(int n=10) : abund(n),  Calculator("sharedace", 1, false) {};
23         EstOutput getValues(SAbundVector*) {return data;};
24         EstOutput getValues(vector<SharedRAbundVector*>);
25         string getCitation() { return "http://www.mothur.org/wiki/SharedAce"; }
26 private:
27         int abund;
28 };
29
30 /***********************************************************************/
31
32 #endif