]> git.donarmstrong.com Git - mothur.git/blob - treemap.h
added multiple processors option for Windows users to align.seqs, dist.seqs, summary...
[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() { m = MothurOut::getInstance(); }
29         TreeMap(string);
30         ~TreeMap();
31         int 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         void removeSeq(string);  //removes a sequence, this is to accomadate trees that do not contain all the seqs in your groupfile
38         string getGroup(string);
39         void addSeq(string, string);
40         void addGroup(string s) { setNamesOfGroups(s); }
41         vector<string> getNamesOfGroups() {
42                 sort(namesOfGroups.begin(), namesOfGroups.end());
43                 return namesOfGroups;
44         }
45         vector<string> namesOfSeqs;
46     map<string,int> seqsPerGroup;       //groupname, number of seqs in that group.
47         map<string, GroupIndex> treemap; //sequence name and <groupname, vector index>
48         void print(ostream&);
49         void makeSim(vector<string>);  //takes groupmap info and fills treemap for use by tree.shared command.
50         void makeSim(ListVector*);  //takes listvector info and fills treemap for use by tree.shared command.   
51         
52 private:
53         vector<string> namesOfGroups;
54         ifstream fileHandle;
55         string groupFileName;
56         int numGroups;
57         map<string, GroupIndex>::iterator it;
58         map<string, int>::iterator it2;
59         void setNamesOfGroups(string); 
60         MothurOut* m;
61         
62         
63 };
64
65 #endif