]> git.donarmstrong.com Git - mothur.git/blob - shared.h
515c2a0da33ab4b2bfc63c25c409ba37fd2ecd49
[mothur.git] / shared.h
1 #ifndef SHARED_H
2 #define SHARED_H
3
4 /*
5  *  shared.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 "mothur.h"
14 #include "sharedrabundvector.h"
15 #include "sharedlistvector.h"
16 #include "globaldata.hpp"
17
18 class Shared {
19         public:
20                 Shared();
21                 ~Shared() {};
22                 void getSharedVectors(SharedListVector*);
23                 map<string, SharedRAbundVector*> sharedGroups; //string is groupname, SharedVector* is out info for that group
24                 
25         private:
26                 GlobalData* globaldata;
27                 map<string, SharedRAbundVector*>::iterator it;
28                 void parse(int, SharedListVector*);
29                 //vector< map<string, SharedRAbundVector*> > sharedRAbund;  //contains all the info needed to create the .shared file not sure if we will need 
30 };
31
32 #endif