]> git.donarmstrong.com Git - mothur.git/blob - treemap.h
fixed multiple bugs for 1.4 release
[mothur.git] / treemap.h
1 #ifndef TREEMAP_H
2 #define TREEMAP_H
3 /*
4  *  treemap.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 1/26/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "mothur.h"
13 #include "groupmap.h"
14 #include "listvector.hpp"
15
16 /* This class is used by the read.tree command to build the tree container. */
17
18 struct GroupIndex {
19         string  groupname;
20         int             vectorIndex;
21 };
22
23 class GroupMap;
24 class ListVector;
25
26 class TreeMap {
27 public:
28         TreeMap() {};
29         TreeMap(string);
30         ~TreeMap();
31         void readMap();
32         int getNumGroups();
33         int getNumSeqs();
34         void setIndex(string, int);  //sequencename, index
35         int getIndex(string);           //returns vector index of sequence
36         bool isValidGroup(string);  //return true if string is a valid group
37         string getGroup(string);
38         vector<string> namesOfGroups;
39         vector<string> namesOfSeqs;
40     map<string,int> seqsPerGroup;       //groupname, number of seqs in that group.
41         map<string, GroupIndex> treemap; //sequence name and <groupname, vector index>
42         void print(ostream&);
43         void makeSim(GroupMap*);  //takes groupmap info and fills treemap for use by tree.shared command.
44         void makeSim(ListVector*);  //takes listvector info and fills treemap for use by tree.shared command.   
45         
46 private:
47         ifstream fileHandle;
48         string groupFileName;
49         int numGroups;
50         map<string, GroupIndex>::iterator it;
51         map<string, int>::iterator it2;
52         void setNamesOfGroups(string); 
53         
54         
55 };
56
57 #endif