]> git.donarmstrong.com Git - mothur.git/blob - phylotype.h
started work on classify.seqs command. changed the database class so that it does...
[mothur.git] / phylotype.h
1 #ifndef PHYLOTYPE_H
2 #define PHYLOTYPE_H
3
4 /*
5  *  phylotype.h
6  *  Mothur
7  *
8  *  Created by westcott on 11/3/09.
9  *  Copyright 2009 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14 #include "classify.h"
15
16 /**************************************************************************************************/
17
18 class PhyloType : public Classify {
19         
20 public:
21         PhyloType(string, string, string, int, int, int, int, int);
22         ~PhyloType() {};
23         
24         string getTaxonomy(Sequence*);
25         
26         
27 private:
28         
29 };
30
31 /**************************************************************************************************/
32
33 #endif
34