-
In R, create a function
Hirschberg()
for the alignment of two sequences using Hirschberg’s algorithm. -
Input:
DNAString
object representing NT or AA sequence to be alignedDNAString
object representing NT or AA sequence to be aligned- a list of
DNAString
objects with alignment of input sequences - an integer value of a score for matching bases
- an integer value of a score for mismatching bases
- an integer value of a penalty for gap insertion
-
Output:
- a list of
DNAString
objects with alignment of input sequences
- a list of
-
Implement the function on your own or you can use a prepared template
hirschberg_template.R
. -
Hint: You will need to implement your own function to calculate the score of the partial alignments (use the Needleman-Wunsch algorithm in linear space).
-
Also for spoilers and more help, see the following pseudocode, that corresponds with the template.
Spoilers! Pseudocode here:
Hirschberg(X, Y, align, match, mismatch, gap)
1 Z ← the first row of alignment
2 W ← the second row of alignment
3 if length(X) = 0
4 for i ← 1 to length(Y)
5 Z ← Z + '-'
6 W ← W + Y[i]
7 align ← merge alignments Z and W
8 else if length(Y) = 0
9 for i ← 1 to length(X)
10 Z ← Z + X[i]
11 W ← W + '-'
12 align ← merge alignments Z and W
13 else if length(X) = 1 and length(Y) = 1
14 Z ← Z + X[1]
15 W ← W + Y[1]
16 align ← merge alignments Z and W
17 else
18 xlen ← length(X)
19 xmid ← xlen / 2
20 ylen ← length(Y)
21 ScoreL ← NWScore(X(1, xmid), Y, match, mismatch, gap)
22 ScoreR ← NWScore(reverse(X(xmid + 1, xlen)), reverse(Y))
23 ymid ← arg max (ScoreL + reverse(ScoreR)) - 1
24 align ← Hirschberg(X(1, xmid), Y(1, ymid), align, match, mismatch, gap)
25 align ← Hirschberg(X(xmid + 1, xlen), Y(ymid + 1, ylen), match, mismatch, gap)
26 return align
Download files from GitHub
Basic Git settings
- Configure the Git editor
git config --global core.editor notepad- Configure your name and email address
git config --global user.name "Zuzana Nova" git config --global user.email z.nova@vut.cz
- Check current settings
git config --global --list
-
Create a fork on your GitHub account. On the GitHub page of this repository find a Fork button in the upper right corner.
-
Clone forked repository from your GitHub page to your computer:
git clone <fork repository address>
- In a local repository, set new remote for a project repository:
git remote add upstream https://github.com/mpa-prg/exercise_05.git
Create a new commit and send new changes to your remote repository.
- Add file to a new commit.
git add <file_name>
- Create a new commit, enter commit message, save the file and close it.
git commit
- Send a new commit to your GitHub repository.
git push origin main