]> git.donarmstrong.com Git - mothur.git/blob - doTaxonomy.h
final fixes for 1.7
[mothur.git] / doTaxonomy.h
1 #ifndef DOTAXONOMY_H
2 #define DOTAXONOMY_H
3
4 /*
5  *  doTaxonomy.h
6  *  
7  *
8  *  Created by Pat Schloss on 6/17/09.
9  *  Copyright 2009 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14
15 /**************************************************************************************************/
16
17 struct TaxNode {
18         vector<string> accessions;      //names of seqs in this branch of tree
19         map<string, int> children;  //childs name to index in tree
20         int parent, childNumber, level;
21         string name, heirarchyID;
22         
23         TaxNode(string n) : name(n), level(0), parent(-1) {             }
24         TaxNode(){}
25 };
26
27 /**************************************************************************************************/
28
29 class PhyloTree {
30
31 public:
32         PhyloTree();
33         ~PhyloTree() {};
34         void addSeqToTree(string, string);
35         void assignHeirarchyIDs(int);
36         void print(ofstream&);
37         vector<int> getGenusNodes();    
38         TaxNode get(int i)                              {       return tree[i]; }
39         TaxNode get(string seqName)             {       return tree[name2Taxonomy[seqName]];    }
40         int getIndex(string seqName)    {       return name2Taxonomy[seqName];  }
41         string getName(int i)                   {       return tree[i].name;    }
42 private:
43         string getNextTaxon(string&);
44         vector<TaxNode> tree;
45         vector<int> genusIndex; //holds the indexes in tree where the genus level taxonomies are stored
46         map<string, int> name2Taxonomy;  //maps name to index in tree
47         map<int, int> uniqueTaxonomies;  //map of unique taxonomies
48         void print(int, ofstream&);
49         int numNodes;
50         int numSeqs;
51 };
52
53 /**************************************************************************************************/
54
55 #endif
56
57