]> git.donarmstrong.com Git - mothur.git/blob - sharedsobscollectsummary.h
added read.shared, broke up globaldata a bit
[mothur.git] / sharedsobscollectsummary.h
1 #ifndef SHAREDSOBSCOLLECTSUMMARY_H
2 #define SHAREDSOBSCOLLECTSUMMARY_H
3
4 /*
5  *  sharedsobscollectsummary.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 2/12/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 /* This calculator returns the number of shared species between 2 groups. */
14
15 #include "calculator.h"
16
17 /***********************************************************************/
18 class SharedSobsCS : public Calculator {
19
20 public:
21         SharedSobsCS() : Calculator("SharedSobs", 1) {};
22         EstOutput getValues(SAbundVector* rank){ return data; };
23         EstOutput getValues(SharedRAbundVector* shared1, SharedRAbundVector* shared2);
24 };
25
26 /***********************************************************************/
27
28 #endif