-
Notifications
You must be signed in to change notification settings - Fork 7
/
seqanpy.h
37 lines (29 loc) · 1.23 KB
/
seqanpy.h
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
// vim:
/*
* Created on: 26/01/2014
* Author: Fabio Zanini
* Contents: Main header for the python wrapper of the SeqAn library.
*/
// Includes
#include <string>
#include <iostream>
#include <sstream>
// Functions
int nothing();
int align_global(std::string seq1, std::string seq2,
std::string* aliout1, std::string* aliout2, int band=100,
int score_match=3, int score_mismatch=-3,
int score_gapext=-1, int score_gapopen=-5);
int align_overlap(std::string seq1, std::string seq2,
std::string* aliout1, std::string* aliout2, int band=-1,
int score_match=3, int score_mismatch=-3,
int score_gapext=-1, int score_gapopen=-5,
int cut_flanks=0);
int align_ladder(std::string seq1, std::string seq2,
std::string* aliout1, std::string* aliout2, int band=-1,
int score_match=3, int score_mismatch=-3,
int score_gapext=-1, int score_gapopen=-5);
int align_local(std::string seq1, std::string seq2,
std::string* aliout1, std::string* aliout2,
int score_match=3, int score_mismatch=-3,
int score_gapext=-1, int score_gapopen=-5);