]> git.donarmstrong.com Git - mothur.git/blob - sharedrabundvector.h
fixed bug with displaying info for collect.shared() and summary.shared().
[mothur.git] / sharedrabundvector.h
1 #ifndef SHAREDRABUNDVECTOR_H
2 #define SHAREDRABUNDVECTOR_H
3
4 /*
5  *  sharedrabundvector.h
6  *  Dotur
7  *
8  *  Created by Sarah Westcott on 12/5/08.
9  *  Copyright 2008 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "datavector.hpp"
14 #include "sharedordervector.h"
15 #include "sharedsabundvector.h"
16 #include "rabundvector.hpp"
17
18 /* This class is a child to datavector.  It represents OTU information at a certain distance. 
19         It is similiar to an rabundvector except each member of data knows which group it belongs to.
20         Each member of the internal container "data" is a struct of type individual. 
21         An individual which knows the OTU from which it came, 
22         the group it is in and its abundance.  */
23
24
25
26 class SharedRAbundVector : public DataVector {
27         
28 public:
29         SharedRAbundVector();
30         SharedRAbundVector(int);
31         //SharedRAbundVector(string, vector<int>);
32         SharedRAbundVector(const SharedRAbundVector& bv) : DataVector(bv), data(bv.data), maxRank(bv.maxRank), numBins(bv.numBins), numSeqs(bv.numSeqs){};
33 //      SharedRAbundVector(ifstream&);
34         ~SharedRAbundVector();
35
36         int getNumBins();               
37         int getNumSeqs();                                                       
38         int getMaxRank();
39         string getGroup();
40         void setGroup(string);
41         int getGroupIndex();
42         void setGroupIndex(int);                                                                
43
44         void set(int, int, string);                     //OTU, abundance, groupname
45         individual get(int);
46         int getAbundance(int);
47         void push_back(int, int, string);  //abundance, OTU, groupname
48         void pop_back();
49         void resize(int);
50         int size();
51         vector<individual>::reverse_iterator rbegin();
52         vector<individual>::reverse_iterator rend();
53         
54         void print(ostream&);
55                 
56         RAbundVector getRAbundVector();
57         SAbundVector getSAbundVector();
58         OrderVector getOrderVector(map<string,int>*);
59         SharedOrderVector getSharedOrderVector();
60         SharedSAbundVector getSharedSAbundVector();
61         SharedRAbundVector getSharedRAbundVector();
62         
63 private:
64         vector<individual>  data; 
65         int maxRank;
66         int numBins;
67         int numSeqs;
68         string group;
69         int index;      
70 };
71
72
73 #endif
74