1 / 41

1-month Practical Course Genome Analysis Lecture 4: Pair-wise alignment Centre for Integrative Bioinformatics VU (IBIVU)

C. E. N. T. E. R. F. O. R. I. N. T. E. G. R. A. T. I. V. E. B. I. O. I. N. F. O. R. M. A. T. I. C. S. V. U. 1-month Practical Course Genome Analysis Lecture 4: Pair-wise alignment Centre for Integrative Bioinformatics VU (IBIVU) Vrije Universiteit Amsterdam

mervyn
Download Presentation

1-month Practical Course Genome Analysis Lecture 4: Pair-wise alignment Centre for Integrative Bioinformatics VU (IBIVU)

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. C E N T E R F O R I N T E G R A T I V E B I O I N F O R M A T I C S V U 1-month Practical Course Genome AnalysisLecture 4: Pair-wise alignment Centre for Integrative Bioinformatics VU (IBIVU) Vrije Universiteit Amsterdam The Netherlands www.ibivu.cs.vu.nl heringa@cs.vu.nl

  2. Pair-wise alignment T D W V T A L K T D W L - - I K Combinatorial explosion - 1 gap in 1 sequence: n+1 possibilities - 2 gaps in 1 sequence: (n+1)n - 3 gaps in 1 sequence: (n+1)n(n-1), etc. 2n (2n)! 22n = ~ n (n!)2 n 2 sequences of 300 a.a.: ~1088 alignments 2 sequences of 1000 a.a.: ~10600 alignments!

  3. Technique to overcome the combinatorial explosion:Dynamic Programming • Alignment is simulated as Markov process, all sequence positions are seen as independent • Chances of sequence events are independent • Therefore, probabilities per aligned position need to be multiplied • Amino acid matrices contain so-called log-odds values (log10 of the probabilities), so probabilities can be summed

  4. To say the same more statistically… • To perform statistical analyses on messages or sequences, we need a reference model. • The model: each letter in a sequence is selected from a defined alphabet in an independent and identically distributed (i.i.d.) manner. • This choice of model system will allow us to compute the statistical significance of certain characteristics of a sequence, its subsequences, or an alignment. • Given a probability distribution, Pi, for the letters in ai.i.d. message, the probability of seeing a particular sequence of letters i, j, k, ... n is simply Pi Pj Pk···Pn. • As an alternative to multiplication of the probabilities, we could sum their logarithms and exponentiate the result. The probability of the same sequence of letters can be computed by exponentiating log Pi + log Pj + log Pk+ ··· + log Pn. • In practice, when aligning sequences we only add log-odds values (residue exchange matrix) but we do not exponentiate the final score.

  5. Sequence alignmentHistory of the Dynamic Programming (DP) algorithm 1970Needleman-Wunsch global pair-wise alignment Needleman SB, Wunsch CD (1970) A general method applicable to the search for similarities in the amino acid sequence of two proteins,J Mol Biol. 48(3):443-53. 1981Smith-Waterman local pair-wise alignment Smith, TF, Waterman, MS (1981) Identification of common molecular subsequences. J. Mol. Biol. 147, 195-197.

  6. Pairwise sequence alignment Global dynamic programming MDAGSTVILCFVG Evolution M D A A S T I L C G S Amino Acid Exchange Matrix Search matrix Gap penalties (open,extension) MDAGSTVILCFVG- MDAAST-ILC--GS

  7. Dynamic programming Three kinds of Gap Penalty schemes: • Linear: gp(k)=ak • Affine: gp(k)=b+ak(most commonly used) • Concave (general): e.g. gp(k)=log(k) k is the gap length gp(k) b k

  8. Global dynamic programming j-1j i-1 i Value from residue exchange matrix H(i-1,j-1)+ S(i,j) H(i-1,j) - g H(i,j-1) - g diagonal vertical horizontal H(i,j) = Max This is a recursive formula

  9. M D A A S T I L C G S MDAGSTVILCFVG Search matrix MDAGSTVILCFVG- MDAAST-ILC--GS Dynamic programming steps • Forward step: Fill in search matrix using appropriate scoring system (exchange matrix and gap penalties) and place back-pointers • Get alignment score from ‘last’ cell: • Lower right cell (global and semi-global DP) • Highest scoring cell anywhere in matrix (local alignment – see later slides) • Perform trace-back (using back-pointers placed during forward step) and get alignment

  10. Global dynamic programmingPAM250, Gap=6 (linear) These values are copied from the PAM250 matrix (see earlier slide) The extra bottom row and rightmost column give the penalties that would need to be applied due to end gaps S-HAKE SPEARE Higgs & Attwood, p. 124

  11. Global dynamic programming j-1j i-1 i H(i-1,j-1)+ S(i,j) H(i-1,j) - g H(i,j-1) - g diagonal vertical horizontal H(i,j) = Max • Problem with simple DP approach: • Can only do linear gap penalties • Not suitable for affine and concave penalties

  12. Global dynamic programming with concave gap penalties • Ngila is a global, pairwise alignment program that uses logarithmicand affine gap costs, i.e. C(g) = a+b*g+c*ln(g). • These gap costs aremore biologically realistic than the more popular (and efficient) affinegap cost model. • Ngila version 1.2.1includes two new, evolutionary alignment models. These models allow you to find the maximumalignment of two sequences based on biological, evolutionary parameters--no more guessing at biological costs. Additional changesare noted on the website. • Website & Manual:http://scit.us/projects/ngila/ • Reference: Cartwright RA (2007) Ngila: global pairwise alignments with logarithmic and affine gap costs. Bioinformatics. 23(11):1427-1428

  13. Global dynamic programmingAffine and logarithmic gap penalties j-1 i-1 Gap opening penalty Max{S0<x<i-1, j-1- Pi - (i-x-1)Px} Si-1,j-1 Max{Si-1, 0<y<j-1 - Pi - (j-y-1)Px} Si,j = si,j + Max Gap extension penalty

  14. Global dynamic programmingGapo=10, Gape=2 These values are copied from the PAM250 matrix (see earlier slide), after being made non-negative by adding 8 to each PAM250 matrix cell (-8 is the lowest number in the PAM250 matrix) The extra bottom row and rightmost column give the final global alignment scores

  15. Easy DP recipe for using affine gap penalties j-1 • M[i,j] is optimal alignment (highest scoring alignment until [i,j]) • Check • preceding row until j-2: apply appropriate gap penalties • preceding row until i-2: apply appropriate gap penalties • and cell[i-1, j-1]: apply score for cell[i-1, j-1] i-1

  16. DP is a two-step process • Forward step: calculate scores • Trace back: start at highest score and reconstruct the path leading to the highest score • These two steps lead to the highest scoring alignment (the optimal alignment) • This is guaranteed when you use DP!

  17. Global dynamic programming

  18. Semi-global pairwise alignment • Global alignment: all gaps are penalised • Semi-global alignment: N- and C-terminal gaps (end-gaps) are not penalised MSTGAVLIY--TS----- ---GGILLFHRTSGTSNS End-gaps End-gaps

  19. Semi-global dynamic programming- two examples with different gap penalties - These values are copied from the PAM250 matrix (see earlier slide), after being made non-negative by adding 8 to each PAM250 matrix cell (-8 is the lowest number in the PAM250 matrix) Global score is 65 –10 – 1*2 –10 – 2*2

  20. Semi-global pairwise alignment Applications of semi-global: – Finding a gene in genome – Placing marker onto a chromosome – One sequence much longer than the other Danger: if gap penalties high -- really bad alignments for divergent sequences N- or C-terminal amino acids are often small and polar, giving rise to semi-global alignments with tips of sequences matched in cases of low sequence similarity

  21. Local dynamic programming(Smith & Waterman, 1981) LCFVMLAGSTVIVGTR E D A S T I L C G S Negative numbers Amino Acid Exchange Matrix Search matrix Gap penalties (open, extension) AGSTVIVG A-STILCG

  22. Local dynamic programming(Smith & Waterman, 1981) j-1 i-1 Gap opening penalty Si,j + Max{S0<x<i-1,j-1 - Pi - (i-x-1)Px} Si,j + Si-1,j-1 Si,j + Max {Si-1,0<y<j-1 - Pi - (j-y-1)Px} 0 Si,j = Max Gap extension penalty

  23. Local dynamic programming

  24. Dot plots • Way of representing (visualising) sequence similarity without doing dynamic programming (DP) • Make same matrix, but locally represent sequence similarity by averaging using a window

  25. Comparing two sequences • We want to be able to choose the best alignment between two sequences. • A simple method of visualising similarities between two sequences is to use dot plots. The first sequence to be compared is assigned to the horizontal axis and the second is assigned to the vertical axis. • Comparison is done through scoring diagonals of preset length (gapless fragments)

  26. Comparing two sequences using a dot plot Central cell in window takes the (average) score over all window cells Here you see a diagonal (window) of 7 residue pairs, i.e. the window has length 7.

  27. Dot plots can be filtered by window approaches (to calculate running averages) and applying a threshold They can identify insertions, deletions, inversions

  28. Global or Local Pairwise alignment B B C A A B A A C A B C A Local B Local A B C A B C B A Global Global B A C A

  29. Globin fold  protein myoglobin PDB: 1MBN Helices are labelled ‘A’ (blue) to ‘H’ (red). D helix can be missing in some globins: what happens with the alignment?

  30. Pyruvate kinase Phosphotransferase b barrel regulatory domain a/b barrel catalytic substrate binding domain a/b nucleotide binding domain

  31. What does this mean for alignments? • Alignments need to be able to skip secondary structural elements to complete domains (i.e. putting gaps opposite these motifs in the shorter sequence). • Depending on gap penalties chosen, the algorithm might have difficulty with making such long gaps (for example when using high affine gap penalties), resulting in incorrect alignment.

  32. There are three kinds of pairwise alignments • Global alignment – align all residues in both sequences; all gaps are penalised • Semi-global alignment – align all residues in both sequences; end gaps are not penalised (zero end gap penalties) • Local alignment – align part of each sequence; end gaps are not applicable

  33. Easy global DP recipe for using affine gap penalties (after Gotoh) j-1 Penalty = Pi + gap_length*Pe Max{S0<x<i-1, j-1- Pi - (i-x-1)Px} Si-1,j-1 Max{Si-1, 0<y<j-1 - Pi - (j-y-1)Px} Si,j = si,j + Max i-1 • M[i,j] is optimal alignment (highest scoring alignment until [i, j]) • At each cell [i, j] in search matrix, check Max coming from: any cell in preceding row until j-2: add score for cell[i, j] minus appropriate gap penalties; any cell in preceding column until i-2: add score for cell[i, j] minus appropriate gap penalties; or cell[i-1, j-1]: add score for cell[i, j] • Select highest scoring cell in bottom row and rightmost column and do trace-back

  34. Let’s do an example: global alignmentGotoh’s DP algorithm with affine gap penalties (PAM250, Pi=10, Pe=2) PAM250 Cell (D2, T4) can alternatively come from two cells (same score): ‘high-road’ or ‘low-road’ Row and column ‘0’ are filled with 0, -12, -14, -16, … if global alignment is used (for N-terminal end-gaps); also extra row and column at the end to calculate the score including C-terminal end-gap penalties.

  35. Let’s do another example: semi-global alignmentGotoh’s DP algorithm with affine gap penalties (PAM250, Pi=10, Pe=2) PAM250 Starting row and column ‘0’, and extra column at right or extra row at bottom is not necessary when using semi global alignment (zero end-gaps). Rest works as under global alignment.

  36. Easy local DP recipe for using affine gap penalties (after Gotoh) j-1 Penalty = Pi + gap_length*Pe Si,j + Max{S0<x<i-1,j-1 - Pi - (i-x-1)Px} Si,j + Si-1,j-1 Si,j + Max {Si-1,0<y<j-1 - Pi - (j-y-1)Px} 0 Si,j = Max i-1 • M[i,j] is optimal alignment (highest scoring alignment until [i, j]) • At each cell [i, j] in search matrix, check Max coming from: any cell in preceding row until j-2: add score for cell[i, j] minus appropriate gap penalties; any cell in preceding column until i-2: add score for cell[i, j] minus appropriate gap penalties; or cell[i-1, j-1]: add score for cell[i, j] • Select highest scoring cell anywhere in matrix and do trace-back until zero-valued cell or start of sequence(s)

  37. Let’s do yet another example: local alignmentGotoh’s DP algorithm with affine gap penalties (PAM250, Pi=10, Pe=2) PAM250 Extra start/end columns/rows not necessary (no end-gaps). Each negative scoring cell is set to zero. Highest scoring cell may be found anywhere in search matrix after calculating it. Trace highest scoring cell back to first cell with zero value (or the beginning of one or both sequences)

  38. What to align, nucleotide or amino acid sequences? If ORF then align at protein level • (i) Many mutations within DNA are synonymous, leading to overestimation of sequence divergence if compared at the DNA level. • (ii) Evolutionary relationships can be more finely expressed using a 20×20 amino acid exchange table than using nucleotide exchanges. • (iii) DNA sequences contain non-coding regions which should be avoided in homology searches. Still an issue when translating into (six) protein sequences through a codon table. • (iv) Searching at protein level: frameshifts can occur, leading to stretches of incorrect amino acids and possibly elongation of sequences due to missed stop codons. But frameshifts normally result in stretches of highly unlikely amino acids: can be used as a signal to trace.

  39. A note on reliability • All these matrices are designed using standard evolutionary models. • It is important to understand that evolution is not the same for all proteins, not even for the same regions of proteins. • No single matrix performs best on all sequences. Some are better for sequences with few gaps, and others are better for sequences with fewer identical amino acids. • Therefore, when aligning sequences, applying a general model to all cases is not ideal. Rather, re-adjustment can be used to make the general model better fit the given data.

  40. Alignment summary • If ORF exists, then align at protein level. • Amino acid substitution matrices reflect the log-odds ratio between the evolutionary and random model and therefore help in determining homology via the alignment score. • The evolutionary and random models depend on generalized data used to derive them. This is not an ideal solution. • Apart from the PAM and BLOSUM series, a large number of further matrices have been developed. • Matrices have been made based on DNA, protein structure, information content, etc. • For local alignment, BLOSUM62 is often superior; for distant (global) alignments, BLOSUM50, GONNET, or (still) PAM250 work well. • Remember that gap penalties are always a problem; unlike the matrices themselves, there is no formal way to calculate their values -- you can follow recommended settings, but these are based on trial and error and not on a formal framework.

  41. Pair-wise alignment quality versus sequence identity(Vogt et al., JMB 249, 816-831,1995) Correctly matched residues are determined using structural alignments (comparing protein 3D structures); Error rates become dramatic at lower sequence identity levels – at 25% identical residues 75% of residues is aligned correctly, at 15% sequence identity only 30% is aligned correctly!

More Related