forked from mothur/mothur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blastalign.hpp
46 lines (33 loc) · 898 Bytes
/
blastalign.hpp
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
35
36
37
38
39
40
41
42
43
#ifndef BlastAlignment_H
#define BlastAlignment_H
/*
* blastalign.hpp
*
*
* Created by Pat Schloss on 12/16/08.
* Copyright 2008 Patrick D. Schloss. All rights reserved.
*
* This is a basic alignment method that gets the blast program to do the heavy lifting. In the future, we should
* probably incorporate NCBI's library so that we don't have to call on a user-supplied executable. This is a child
* of the Alignment class, which requires a constructor and align method.
*
*/
#include "mothur.h"
class BlastAlignment : public Alignment {
public:
BlastAlignment(float, float, float, float);
~BlastAlignment();
void align(string, string);
void setMatrix(int){};
private:
string candidateFileName;
string templateFileName;
string blastFileName;
string path;
void setPairwiseSeqs();
float match;
float mismatch;
float gapOpen;
float gapExtend;
};
#endif