From ef5f5bf730e28d6d562a257887408de04ec497a8 Mon Sep 17 00:00:00 2001 From: domonik Date: Wed, 20 Nov 2024 15:11:09 +0100 Subject: [PATCH] removes wrong exercise --- exercise-sheet-4.Rmd | 76 ++++---------------------------------------- 1 file changed, 6 insertions(+), 70 deletions(-) diff --git a/exercise-sheet-4.Rmd b/exercise-sheet-4.Rmd index 38a31b1..5691510 100644 --- a/exercise-sheet-4.Rmd +++ b/exercise-sheet-4.Rmd @@ -97,72 +97,8 @@ Does the order of checking insertion and deletions change the runtime? #### {-} -# Exercise 2 - Waterman-Smith-Beyer traceback - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -:::: {#explaining .warning-box } - -::: {#note-exp .warning-header} -```{r, include=knitr::is_html_output(), echo=FALSE,} -knitr::include_graphics("figures/warningicon.svg") -``` -**Warning** -::: -::: {#note-exp .note-body} - -The previously uploaded recursion schema was wrong. We will either try to fix -this exercise or remove it completely. Sorry for any inconvenience. - - -::: - - -:::: - -# Exercise 3 - Gotoh Algorithm +# Exercise 2 - Gotoh Algorithm Consider the following sequences $S1$ , $S2$ and the similarity scoring via $s(x, y)$ and $g(k)$. @@ -179,7 +115,7 @@ Consider the following sequences $S1$ , $S2$ and the similarity scoring via $s(x -### 3a) +### 2a) Which optimization scheme (minimization/maximization) needs to be applied to generate a useful sequence alignment. @@ -197,7 +133,7 @@ Maximization since we are scoring a similarity and not a distance. #### {-} -### 3b) +### 2b) Fill the dynamic programming matrices $D_{i,j}$, $Q_{i,j}$ and $P_{i,j}$ using the Gotoh algorithm! @@ -380,7 +316,7 @@ index_replace(pij_ft) #### {-} -### 3c) +### 2c) Calculate all optimal alignments and the corresponding score! @@ -405,7 +341,7 @@ TACGCAGA TACGCAGA TACGCAGA #### {-} -### 3d) +### 2d) Calculate the alignments using the Waterman-Smith-Beyer algorithm instead. @@ -427,7 +363,7 @@ Calculation is just less efficient. --------------------------------- -# Exercise 4 - Programming assignment +# Exercise 3 - Programming assignment Programming assignments are available via Github Classroom and contain automatic tests.