]> git.donarmstrong.com Git - mothur.git/blob - doTaxonomy.h
6901d2757fb6630b980641c0de0dfb8390ac3f52
[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         void addSeqToTree(string, string);
34         void assignHeirarchyIDs(int);
35         void print(ofstream&);
36         vector<int> getGenusNodes();    
37         TaxNode get(int i)                              {       return tree[i]; }
38         TaxNode get(string seqName)             {       return tree[name2Taxonomy[seqName]];    }
39         int getIndex(string seqName)    {       return name2Taxonomy[seqName];  }
40         string getName(int i)                   {       return tree[i].name;    }
41 private:
42         string getNextTaxon(string&);
43         vector<TaxNode> tree;
44         vector<int> genusIndex; //holds the indexes in tree where the genus level taxonomies are stored
45         map<string, int> name2Taxonomy;  //maps name to index in tree
46         map<int, int> uniqueTaxonomies;  //map of unique taxonomies
47         void print(int, ofstream&);
48         int numNodes;
49         int numSeqs;
50 };
51
52 /**************************************************************************************************/
53
54 #endif
55
56