-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDP.cpp
executable file
·346 lines (307 loc) · 6.2 KB
/
DP.cpp
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/*************************************
* Program: DP.cpp
* Description: Computes pairwise sequence alignment and prints DP matrix
* Author: Steven Ahrendt
* email: [email protected]
* Date: 4.22.11
* v 0.5: All values hard-coded
* no BLOSUM lookup
* v 1.0: BLOSUM50 lookup
* table stored as file
* sequences hard-coded
**************************************
* Usage: DP < BLOSUM50
**************************************/
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
#include <cstdlib>
#include <string>
#include <vector>
using namespace std;
static int GAP_OPEN = 8;
//static int GAP_EXTEND = 8;
static int BLOSUM_SIZE = 25;
static string SEQ1 = "FIPFSAGPQQPPPDAEKDIGCIADIGKEDIAKSD";
static string SEQ2 = "GAGSDHFDADKIKISSMMWISKAIDKGIHIDLP";
static int** BLOSUM50;
int numWidth(int n)
{
int result = 0;
if(n < 0)
{
result++;
}
double t = (double)abs(n);
while(t >= 1)
{
result++;
t /=10;
}
return result;
} //numWidth(int)
int** matrixInit(int rows, int cols)
{
int** result = new int*[rows];
for(int i=0;i<rows;i++)
{
result[i] = new int[cols];
for(int j=0;j<cols;j++)
{
result[i][j] = 0;
}
}
return result;
} //matrixInit(int,int)
void printMatrix(int** m, int r, int c)
{
int wformat = 1;
//Scan matrix for widest value
for(int i=1;i<r;i++)
{
for(int j=1;j<c;j++)
{
int nw = numWidth(m[i][j]);
//cout << nd << endl;
if(nw > wformat)
{
wformat = nw;
}
}
}
for(int i=0;i<r;i++)
{
for(int j=0; j<c;j++)
{
if((i==0) || (j==0))
{
printf("%*c ",wformat,m[i][j]);
}
else
{
printf("%*d ",wformat,m[i][j]);
}
}
cout << endl;
}
} //printMatrix(int**,int,int)
void printSolMatrix(int** m, string seq1, string seq2)
{
int c = seq2.size()+1;
int r = seq1.size()+1;
int wformat = 1;
//Scan matrix for widest value
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
int nw = numWidth(m[i][j]);
//cout << nd << endl;
if(nw > wformat)
{
wformat = nw;
}
}
}
cout << " ";
for(int w=0;w<wformat;w++)
{
cout << " ";
}
cout << " ";
for(unsigned int s=0;s<seq2.size();s++)
{
printf("%*c ",wformat,seq2.at(s));
}
cout << endl;
for(int i=0;i<r;i++)
{
if(i>0)
{
cout << seq1.at(i-1);
}
else
{
cout << " ";
}
cout << " ";
for(int j=0; j<c;j++)
{
printf("%*d ",wformat,m[i][j]);
}
cout << endl;
}
} //printSolMatrix(int**,int,int)
void printTbMatrix(char** tb, string seq1, string seq2)
{
int c = seq2.size()+1;
int r = seq1.size()+1;
cout << " ";
for(unsigned int s=0;s<seq2.size();s++)
{
cout << seq2.at(s) << " ";
}
cout << endl;
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
if((i==0) && (j==0))
{
cout << " -";
}
if((i>0) && (j==0))
{
cout << seq1.at(i-1) << " ";
}
cout << tb[i][j] << " ";
}
cout << endl;
}
} //printTbMatrix(char**,string,string)
int score(char a, char b)
{
char tmp;
int a_index = 0;
int b_index = 0;
//cout << "a: " << a << endl;
//cout << "b: " << b << endl;
for(int i=0;i<BLOSUM_SIZE;i++)
{
tmp = BLOSUM50[i][0];
if(tmp == a)
{
a_index = i;
}
//cout << tmp << endl;
}
for(int j=0;j<BLOSUM_SIZE;j++)
{
tmp = BLOSUM50[0][j];
if(tmp == b)
{
b_index = j;
}
}
return BLOSUM50[a_index][b_index];
} //score(char,char)
int** blosum(int type)
{
int** b = new int*[BLOSUM_SIZE];
char c;
int x;
for(int i=0; i<BLOSUM_SIZE;i++)
{
b[i] = new int[BLOSUM_SIZE];
for(int j=0;j<BLOSUM_SIZE;j++)
{
if((i==0) || (j==0))
{
cin >> c;
//cout << c << " ";
b[i][j] = (int)c;
}
else
{
cin >> x;
//cout << x << " ";
b[i][j] = x;
}
}
//cout << endl;
}
return b;
} //blosum(type)
void printAlign(char** tb, string seq1, string seq2)
{
int r = seq1.size();
int c = seq2.size();
vector<char> align1;
vector<char> align2;
//cout << tb[r][c] << endl;
while((c>0) || (r>0))
{
switch(tb[r][c])
{
case 'U': align1.insert(align1.begin(),seq1.at(r-1)); align2.insert(align2.begin(),'-'); r--;
break;
case 'L': align1.insert(align1.begin(),'-'); align2.insert(align2.begin(),seq2.at(c-1)); c--;
break;
case 'D': align1.insert(align1.begin(),seq1.at(r-1)); align2.insert(align2.begin(),seq2.at(c-1)); r--; c--;
break;
}
}
cout << "Alignment: " << endl;
cout << "Seq1: ";
for(unsigned int i=0;i<align1.size(); i++)
{
cout << align1.at(i);
}
cout << endl;
cout << "Seq2: ";
for(unsigned int j=0;j<align2.size();j++)
{
cout << align2.at(j);
}
cout << endl;
} //printAlign(char**,string,string)
void DP(int** m, int r, int c, string seq1, string seq2)
{
int gp = GAP_OPEN;
// Set up traceback matrix
char** tb = new char*[r];
for(int x=0;x<r;x++)
{
tb[x] = new char[c];
}
// Compute Dynamic programming matrix
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
if((i==0) && (j>0))
{
m[i][j] = m[i][(j-1)] - gp;
tb[i][j] = 'L';
}
if((j==0) && (i>0))
{
m[i][j] = m[(i-1)][j] - gp;
tb[i][j] = 'U';
}
if((i>0) && (j>0))
{
m[i][j] = max( max( m[(i-1)][j]-gp,m[i][(j-1)]-gp ), m[(i-1)][(j-1)] + score(seq1.at((i-1)),seq2.at((j-1))) );
if(m[i][j] == m[(i-1)][j]-gp)
{
tb[i][j] = 'U';
}
else if(m[i][j] == m[i][(j-1)]-gp)
{
tb[i][j] = 'L';
}
else
{
tb[i][j] = 'D';
}
}
}
}
// Print Matrix
printSolMatrix(m,seq1,seq2);
cout << endl;
// Show Score
cout << "Final Score: " << m[r-1][c-1] << endl;
cout << endl;
// Print alignment
printAlign(tb,seq1,seq2);
} //DP(int**,int,int,string,string)
int main()
{
int rows = SEQ1.size()+1;
int cols = SEQ2.size()+1;
int** m = matrixInit(rows,cols);
BLOSUM50 = blosum(50);
DP(m,rows,cols,SEQ1,SEQ2);
return 0;
} // main()