]> git.donarmstrong.com Git - mothur.git/blob - sharedrabundvector.h
When Pat tried to compile mothur in Ubuntu linux, there were a number of minor proble...
[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
42         void set(int, int, string);                     //OTU, abundance, groupname
43         individual get(int);
44         int getAbundance(int);
45         void push_back(int, int, string);  //abundance, OTU, groupname
46         void pop_back();
47         void resize(int);
48         int size();
49         vector<individual>::reverse_iterator rbegin();
50         vector<individual>::reverse_iterator rend();
51         
52         void print(ostream&);
53                 
54         RAbundVector getRAbundVector();
55         SAbundVector getSAbundVector();
56         OrderVector getOrderVector(map<string,int>*);
57         SharedOrderVector getSharedOrderVector();
58         SharedSAbundVector getSharedSAbundVector();
59         SharedRAbundVector getSharedRAbundVector();
60         
61 private:
62         vector<individual>  data; 
63         int maxRank;
64         int numBins;
65         int numSeqs;
66         string group;   
67 };
68
69
70 #endif
71