1 / 13

Multiple Sequence Alignment

Multiple Sequence Alignment. Mult-Seq-Align allows to detect similarities which cannot be detected with Pairwise-Seq-Align methods. Detection of family characteristics. Three questions: 1. Scoring Computation of Mult-Seq-Align. Family representation. Multiple Sequence Alignment.

moses
Download Presentation

Multiple Sequence Alignment

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Multiple Sequence Alignment • Mult-Seq-Align allows to detect similarities which cannot be detected with Pairwise-Seq-Align methods. • Detection of family characteristics. • Three questions: • 1. Scoring • Computation of Mult-Seq-Align. • Family representation.

  2. Multiple Sequence Alignment

  3. Example of MSA (Multiple Sequence Alignment)

  4. Scoring: SP (sum of pairs) SP – the sum of pairwise scores of all pairs of symbols in the column. Here, we will assume that: (-,-) = 0 ρ3(-,A,A) =(-,A)+(-,A)+(A,A) SP Total Score = Σ ρi

  5. Induced pairwise alignment Inducedpairwise alignment or projection of a multiple alignment. a(S1, S2 ) a(S2, S3) a(S1, S3) SP Total Score = Σi<j score[ a(Si, Sj ) ] (-,-) = 0

  6. Dyn.Prog. Solution

  7. Dynamic Programming Solution • The best multiple alignment of r sequences is calculated using an r-dimensional hyper-cube • The size of the hyper-cube is O( Πni ) • Time complexity O(2r nr) * O(computation of the ρ function). • Exact problem is NP-Hard (metrics: sum-of-pairs or evolutionary tree). • more efficient solution is needed

  8. Multiple Alignment from Pairwise Alignments ? • Problem: • The best pairwise alignment does not necessary lead to the best multiple alignment.

  9. S1 S2 S1 S3 S2 S3 Pattern-A Pattern-B Pattern-D Empty Pattern-X Pattern-A Pattern-B S1 Pattern-A Pattern-X Pattern-D S2 Pattern-B Pattern-X Pattern-D S3 Correct Solution S1 S2 S3 Pattern-X

  10. S3 S2 S1 Sc Sk Sk-1 Sk-2 Center Star Alignment • Scoring scheme – distance. • Scoring scheme satisfies the triangle inequality: for any character a,b,cdist(a,c) ≤ dist(a,b) + dist(b,c) • (in practice not all scoring matrices satisfy the triangle inequality) • (c) D(Si, Sj ) – score of the optimal pairwise alignment. • (d) D(M) = Σi<jaM (Si, Sj ) – score of the multiple alignment M. • (e) aM(Si, Sj)– pairwise alignment/score induced by M.

  11. S3 S2 S1 Sc Sk Sk-1 Sk-2 The Center Star Algorithm: (a) FindScminimizing ΣicD(Sc , Si ). (b) Iteratively construct the multiple alignment Mc: 1. Mc={Sc} 2. Add the sequences in S\{Sc} to Mcone by oneso that the induced alignment aMc(Sc, Si) of every newlyaddedsequence Si withSc is optimal. Add spaces, whenneeded, to all pre-aligned sequences. AC-BC DCABC AC--BC DCA-BC DCAABC Running time: * O(n2). AC--BC DCAABC

  12. D(Mc) is at most twice the score of the D(Mopt) • D (Mc) / D (Mopt) ≤2(k-1)/k( < 2 ) • Proof: • a(Si, Sj)≥ D (Si, Sj )(any induced align. is not better than optimal align.) aMc (Sc, Sj)= D (Sc, Sj ) • aMc (Si, Sj)≤ aMc (Si, Sc)+ aMc (Sc, Sj)= D (Si, Sc ) + D (Sc, Sj ) (follows from the triangle inequality) • 2 D(Mc) = Σi=1..k Σ j=1..k,ji aMc(Si , Sj ) ≤ • Σi=1..k Σ j=1..k,ji ( aMc (Si, Sc)+ aMc (Sc, Sj)) = • 2(k-1)Σjc aMc (Sc, Sj) = • 2(k-1)Σjc D(Sc, Sj)

  13. (d) kΣj=1..k,jcD(Sc, Sj) = Σi=1..k Σ j=1..k,jc D(Sc, Sj) ≤Σi=1..k Σ j=1..k,jiD(Si, Sj) ≤ • Σi=1..k Σ j=1..k,ji aMopt (Si, Sj) = • 2 D(Mopt) (e) → 2 D(Mc) ≤ 2(k-1)Σjc D(Sc, Sj) k ΣjcD(Sc, Sj) ≤ 2 D(Mopt) → D(Mc)/(k-1)≤Σjc D(Sc, Si) ΣjcD(Sc, Si) ≤ 2 D(Mopt)/k → D (Mc) / D (Mopt) ≤ 2(k-1)/k

More Related