]> git.donarmstrong.com Git - mothur.git/blob - bayesian.cpp
started work on classify.seqs command. changed the database class so that it does...
[mothur.git] / bayesian.cpp
1 /*
2  *  bayesian.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 11/3/09.
6  *  Copyright 2009 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "bayesian.h"
11
12 /**************************************************************************************************/
13 Bayesian::Bayesian(string tfile, string tempFile, string method, int kmerSize, int gapOpen, int gapExtend, int match, int misMatch) : 
14 Classify(tfile, tempFile, method, kmerSize, gapOpen, gapExtend, match, misMatch) {}
15 /**************************************************************************************************/
16 string Bayesian::getTaxonomy(Sequence* seq) {
17         try {
18                 string tax;
19                 
20                                 
21                 return tax;     
22         }
23         catch(exception& e) {
24                 errorOut(e, "Bayesian", "getTaxonomy");
25                 exit(1);
26         }
27 }
28 /**************************************************************************************************/
29