]> git.donarmstrong.com Git - mothur.git/blob - bayesian.h
started work on classify.seqs command. changed the database class so that it does...
[mothur.git] / bayesian.h
1 #ifndef BAYESIAN_H
2 #define BAYESIAN_H
3
4 /*
5  *  bayesian.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 Bayesian : public Classify {
19         
20 public:
21         Bayesian(string, string, string, int, int, int, int, int);
22         ~Bayesian() {};
23         
24         string getTaxonomy(Sequence*);
25         
26         
27 private:
28         
29 };
30
31 /**************************************************************************************************/
32
33 #endif
34