Tblastnmy.h
Go to the documentation of this file.00001 #ifndef TBLASTNMY_H
00002 #define TBLASTNMY_H
00003
00004 #include "Match.h"
00005
00010 class Tblastnmy : public Tblastn {
00011 public :
00012 Tblastnmy() : Tblastn() {}
00013 Tblastnmy(const Tblastnmy& t) : Tblastn(t) {}
00014 Tblastnmy(const string &qq, const string &tt, int ql, int tl)
00015 : Tblastn(qq,tt,ql,tl) { }
00016
00017
00018 void addMatch(const mysqlpp::Row &arow) {
00019 Tblastn::addMatch(float(arow[2]), int(arow[3]), int(arow[4]),
00020 int(arow[5]), int(arow[6]), int(arow[7]), int(arow[8]),
00021 int(arow[9]), double(arow[10]), double(arow[11]));
00022 }
00023 };
00024
00025 #endif