1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/*
* database.cpp
*
*
* Created by Pat Schloss on 12/16/08.
* Copyright 2008 Patrick D. Schloss. All rights reserved.
*
*/
#include "mothur.h"
#include "sequence.hpp"
#include "database.hpp"
/**************************************************************************************************/
Database::Database(){
longest = 0;
numSeqs = 0;
m = MothurOut::getInstance();
}
/**************************************************************************************************/
Database::~Database(){}
/**************************************************************************************************/
float Database::getSearchScore() { return searchScore; } // we're assuming that the search is already done
/**************************************************************************************************/
int Database::getLongestBase() { return longest+1; }
/**************************************************************************************************/
|