lecture 5 6 local sequence alignment
play

Lecture 5,6 Local sequence alignment Chapter 6 in Jones and Pevzner - PowerPoint PPT Presentation

Lecture 5,6 Local sequence alignment Chapter 6 in Jones and Pevzner Fall 2019 September 12,17, 2019 Evolution as a tool for biological insight Nothing in biology makes sense except in the light of evolution - Theodosius Dobzhansky.


  1. Lecture 5,6 Local sequence alignment Chapter 6 in Jones and Pevzner Fall 2019 September 12,17, 2019

  2. Evolution as a tool for biological insight • “Nothing in biology makes sense except in the light of evolution” - Theodosius Dobzhansky. • The functionality of many genes is virtually the same among many organisms: Can understand biology in simpler organisms than ourselves (“model organisms”).

  3. Local alignment: rationale • Proteins are often multi-functional, and are composed of regions (domains), each of which contributes a particular function • Example: ² Homeobox genes have a short region called the homeodomain that is highly conserved between species. ² A global alignment might not find the homeodomain because it would try to align the ENTIRE sequence Drosophila homeodomain PDB: 1ZQ3

  4. Local vs. Global Alignment (cont’d) Global Alignment --T—-CC-C-AGT—-TATGT-CAGGGGACACG—A-GCATGCAGA-GAC | || | || | | | ||| || | | | | |||| | AATTGCCGCC-GTCGT-T-TTCAG----CA-GTTATG—T-CAGAT--C Local Alignment—better for finding a conserved segment tccCAGTTATGTCAGgggacacgagcatgcagagac |||||||||||| aattgccgccgtcgttttcagCAGTTATGTCAGatc

  5. The Local Alignment Problem • Goal: Find the best local alignment between two strings • Input : Strings v, w and scoring matrix δ • Output : Alignment of substrings of v and w whose alignment score is maximum among all possible alignment of all possible substrings

  6. Local vs. global alignment Compute a “mini” global alignment to Local alignment get a local alignment Global alignment

  7. Local vs. Global Alignment • The Global Alignment Problem tries to find the longest path between vertices (0,0) and ( n,m ) in the edit graph. • The Local Alignment Problem tries to find the longest path among paths between arbitrary vertices ( i,j ) and ( i’,j’ ) in the edit graph. • In an edit graph with negatively-scored edges, a local alignment may score higher than a global alignment

  8. The Problem with this Problem • Naïve method (run time O(n 4 )): - In a grid of size n x n there are n 2 nodes (i,j) that may serve as a source . - For each such node computing alignments from (i,j) to (i’,j’) takes O(n 2 ) time.

  9. Local Alignment: Example

  10. Local Alignment: Example

  11. Local Alignment: Example

  12. Local Alignment: Example

  13. Local Alignment: Example

  14. Local Alignment: Free Rides Yeah, a free ride! The image cannot be displayed. Your computer may not have enough memory to open the image, or the image may have been corrupted. Restart your computer, and then open (0,0) the file again. If the red x still appears, you may have to delete the image and then insert it again. The dashed edges represent the free rides from (0,0) to every other node.

  15. Local Alignment: Recurrence Power of ZERO : this is the 0 only change from the s i-1,j-1 + δ (v i , w j ) original recurrence of a s i,j = max s i-1,j + δ (v i , -) global alignment, s i,j-1 + δ (-, w j ) representing the “free ride” edge

  16. Local Alignment: Backtrace • Score of best local alignment is the maximum entry of s ij • The alignment is found by a backtrace from the maximum node, to a node for which the score is 0.

  17. Local Alignment: SW • This local alignment algorithm is known as the “Smith-Waterman” algorithm 1 . • T.F. Smith and M.W. Waterman. Identification of common molecular subsequences. J. Mol. Biol. 147:195-197, 1981. 1 The Smith-Waterman algorithm considers a more sophisticated gap penalty scheme

  18. Scoring Indels: Naive Approach • A fixed penalty σ is given to every indel: • - σ for 1 indel, • -2 σ for 2 consecutive indels • -3 σ for 3 consecutive indels, etc. Can be too severe penalty for a series of 100 consecutive indels

  19. Affine Gap Penalties • In nature, a series of k indels often comes as a single event rather than a series of k single nucleotide events: Normal scoring would give the same score This is more This is less for both alignments likely. likely.

  20. Affine gap penalty • Score for a gap of length x is: -( ρ + σ x ) where: ρ > 0 is the gap opening penalty σ > 0 is the gap extension penalty • ρ is large relative to σ because you do not want to add too much of a penalty for extending the gap.

  21. Affine Gap Penalties and Edit Graph To reflect affine gap penalties we have to add “long” horizontal and vertical edges to the edit graph. Each such edge of length x should have weight - ρ - x * σ

  22. Adding “Affine Penalty” Edges to the Edit Graph • There are many such edges! • Adding them to the graph increases the running time of the alignment algorithm by a factor of n. • The complexity increases from O( n 2 ) to O( n 3 )

  23. The 3-leveled Manhattan Grid gaps in w matches/mismatches gaps in v

  24. Manhattan in 3 Layers ρ δ δ σ δ ρ δ δ σ

  25. Affine Gap Penalties and 3 Layer Manhattan Grid • We’ll have three recurrences in a 3-layered graph. • The top level creates/extends gaps in the sequence w. • The bottom level creates/extends gaps in sequence v. • The middle level extends matches and mismatches.

  26. Switching Between the Layers • Levels: • The main level is for diagonal edges • The lower level is for horizontal edges • The upper level is for vertical edges • A jumping penalty is assigned to moving from the main level to either the upper level or the lower level (- ρ - σ ) • There is a gap extension penalty for each continuation on a level other than the main level (- σ )

  27. Affine Gap Penalty Recurrences s i,j = s i-1,j - σ Continue gap in w max s i-1,j - ( ρ + σ ) Start gap in w : from middle s i,j = s i,j-1 - σ Continue gap in v max s i,j-1 - ( ρ + σ ) Start gap in v : from middle s i,j = s i-1,j-1 + δ (v i , w j ) Match or Mismatch max s i,j End gap: from top s i,j End gap: from bottom

  28. Should we compare DNA or protein sequences? • DNA sequence is less conserved than protein sequence • The protein sequence contains more information than the DNA sequence ⇒ Less effective to compare coding regions at the nucleotide level

  29. Scoring Matrices

  30. Making a Scoring Matrix • Scoring matrices are created based on the intuition that some mutations have a smaller effect on the function of a protein ⇒ Such mismatch penalties should be less harsh than others.

  31. Scoring Matrix: Example • Although R and K are different amino acids, they have a positive A R N K score. A 5 -2 -1 -1 • Why? They are both R - 7 -1 3 positively charged amino N - - 7 0 acids, therefore substitution will not K - - - 6 greatly change the function of the protein.

  32. Substitutions of Amino Acids Mutation rates between amino acids have dramatic differences!

  33. Conservation • Amino acid changes that preserve the physico- chemical properties of the original residue should receive higher scores • polar to polar • aspartate à glutamate • hydrophobic to hydrophobic • alanine à valine

  34. Percent Sequence Identity • A measure of the extent to which two nucleotide or amino acid sequences are similar A C C T G A G – – A G A C G T G – – G C A G mismatch indel 70% identical

  35. BLOSUM • Blo cks Su bstitution M atrix • Scores derived from observations of the frequencies of substitutions in alignments of related proteins • Matrix name indicates evolutionary distance: • BLOSUM62 was created using sequences sharing no more than 62% identity Henikoff, S. and Henikoff, J. (1992) Amino acid substitution matrices from protein blocks. Proc. Natl. Acad. Sci. USA. 89(biochemistry): 10915 - 10919. 1992

  36. An entry from the BLOCKS database Block PR00851A ID XRODRMPGMNTB; BLOCK AC PR00851A; distance from previous block=(52,131) DE Xeroderma pigmentosum group B protein signature BL adapted; width=21; seqs=8; 99.5%=985; strength=1287 XPB_HUMAN|P19447 ( 74) RPLWVAPDGHIFLEAFSPVYK 54 XPB_MOUSE|P49135 ( 74) RPLWVAPDGHIFLEAFSPVYK 54 P91579 ( 80) RPLYLAPDGHIFLESFSPVYK 67 XPB_DROME|Q02870 ( 84) RPLWVAPNGHVFLESFSPVYK 79 RA25_YEAST|Q00578 ( 131) PLWISPSDGRIILESFSPLAE 100 Q38861 ( 52) RPLWACADGRIFLETFSPLYK 71 O13768 ( 90) PLWINPIDGRIILEAFSPLAE 100 O00835 ( 79) RPIWVCPDGHIFLETFSAIYK 86 // The BLOCKS database is at: http://blocks.fhcrc.org/

  37. The Blosum50 Scoring Matrix

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend