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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#include "mex.h"
#include "matrix.h"
void simplegap(double scoredMatchMat[],
const double gap, int n, int m, double output_F[], double output_P[])
{
// Standard Needleman-Wunsch algorithm
double up, left, diagonal, best, pos;
int i,j;
for(i=0;i<m;i++)
{
output_F[i]=i*gap;
output_P[i]=2;
}
for(j=0; j<n; j++) //put initial values in
{
output_F[j*m]=j*gap;
output_P[j*m]=4;
}
output_P[0]=1;
for(j=1;j<n;j++) //cycle through columns
{
best=output_F[(j)*m];
for(i=1; i<m; i++) //cycle through the rows
{
up=best+gap;
left=output_F[i+(j-1)*m]+gap;
diagonal=output_F[i-1+(j-1)*m]+scoredMatchMat[i-1+(j-1)*m];
if (up>left)
{
best=up;
pos=2;
}
else
{
best=left;
pos=4;
}
if (diagonal>=best)
{
best=diagonal;
output_P[i+j*m]=1;
}
else
{
output_P[i+j*m]=pos;
}
output_F[i+j*m]=best;
}
}
}
void mexFunction(int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs[])
{
double *gap, *output_F, *output_P;
double *scoredMatchMat;
int n, m;
mwSize i;
//double *F_col, *ptr_col;
m=mxGetM(prhs[0]);
n=mxGetN(prhs[0]);
gap=mxGetPr(prhs[1]);
plhs[0]=mxCreateDoubleMatrix(m,n,mxREAL);
plhs[1]=mxCreateDoubleMatrix(m,n,mxREAL);
output_F=mxGetPr(plhs[0]);
output_P=mxGetPr(plhs[1]);
scoredMatchMat=mxGetPr(prhs[0]);
//
simplegap(scoredMatchMat,*gap,n,m,output_F,output_P);
}
|