]> git.donarmstrong.com Git - mothur.git/blob - distancedb.hpp
fixed some bugs
[mothur.git] / distancedb.hpp
1 #ifndef DISTANCEDB_HPP
2 #define DISTANCEDB_HPP
3
4 /*
5  *  distancedb.hpp
6  *  
7  *
8  *  Created by Pat Schloss on 12/29/08.
9  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13
14 #include "mothur.h"
15
16 class DistanceDB : public Database {
17         
18 public:
19         DistanceDB(string, string);
20         Sequence findClosestSequence(Sequence*);
21         
22 private:
23
24         struct hit{
25                 string seqName;
26                 int indexNumber;
27                 float simScore;
28         };
29         vector<hit> mostSimSequenceVector;
30 //      ifstream inputData;
31         int searchIndex;
32 };
33
34 #endif