Question 16
Consider the following two global alignments for the two input DNA sequences: and and answer the given subquestions with respect to the same.
| - | G | - | - | T | T | A | C | T | A | G |
|---|---|---|---|---|---|---|---|---|---|---|
| G | G | A | C | T | T | A | C | - | - | G |
(a) Alignment 1
| G | - | - | - | T | T | A | C | T | A | G |
|---|---|---|---|---|---|---|---|---|---|---|
| G | G | A | C | T | T | A | C | - | - | G |
(b) Alignment 2
Also consider the following score matrix (S).
| 1st String \ 2nd String | A | C | G | T | - |
|---|---|---|---|---|---|
| A | 1 | -3 | -5 | -1 | -3 |
| C | -4 | 1 | -3 | -2 | -3 |
| G | -9 | -7 | 1 | -1 | -3 |
| T | -3 | -5 | -8 | 1 | -4 |
| - | -4 | -2 | -2 | -1 |
Table 2: Score Matrix S
Suppose the score is calculated as follows:
For every gap of length , the gap penalty is calculated as , where the gap opening penalty is computed from the score matrix given in Table 2. The total gap penalty is the sum of the gap penalties for every gap.
What is the difference in the alignment score?
Enter the value as a single integer.