]> git.donarmstrong.com Git - mothur.git/blob - database.hpp
started shared utilities, updates to venn and heatmap added tree.groups command
[mothur.git] / database.hpp
1 #ifndef DATABASE_HPP
2 #define DATABASE_HPP
3
4 /*
5  *  database.hpp
6  *  
7  *
8  *  Created by Pat Schloss on 12/16/08.
9  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14
15 class Database {
16 public:
17         Database(string);
18         virtual Sequence* findClosestSequence(Sequence*) = 0;
19         
20 protected:
21         int numSeqs;
22         vector<Sequence*> templateSequences;    
23 };
24
25 #endif