Download presentation
Presentation is loading. Please wait.
Published bySabrina Maxwell Modified over 9 years ago
1
COT 6930 HPC and Bioinformatics Multiple Sequence Alignment Xingquan Zhu Dept. of Computer Science and Engineering
2
Outline Multiple Sequence Alignment What, Why, and How Multiple Sequence Alignment Methods Multidimensional dynamic programming Star Alignment Tree Alignment Progressive Alignment Clustalw: a widely used algorithm Iterative Alignment Genetic Algorithm
3
What is a Multiple Sequence Alignment? Pairwise alignments: involve two sequences Multiple sequence alignments: involve more than 2 sequences (often 100’s, either nucleotide or protein). A formal definition A multiple alignment of strings S 1, … S k is a series of strings with spaces such that |S 1 ’| = … = |S k ’| S j ’ is an extension of S j by insertion of spaces Goal: Find an optimal multiple alignment. Hs ---MK----- --LSLVAAML LLLSAARAEE EDKK-EDVGT VVGIDLGTTY Sp ---MKKFQLF SILSYFVALF LLPMAFASGD DNST-ESYGT VIGIDLGTTY Tg MTAAKKLSLF SLAALFCLLS VATLRPVAAS DAEEGKVKDV VIGIDLGTTY Pf --------MN QIRPYILLLI VSLLKFISAV DSN---IEGP VIGIDLGTTY
4
Why we do multiple alignments? In order to reveal the relationship between a group of sequences (homology) Simultaneous alignment of similar gene sequences may Discover the conserved regions in genes Determine the consensus sequence of these aligned sequences Help defines a protein family that may share a common biochemical function or evolutionary origin and thus reveals an evolutionary history of the sequences. Help prediction of the secondary and tertiary structures of new sequences
5
MSA Methods Multidimensional dynamic programming Extension of DP to multiple (3) sequences Star Alignment, Tree Alignment, Progressive Alignment Starting with an alignment of the most alike sequences and building an alignment by adding more sequences Iterative methods Making an initial alignment of groups of sequences and revising the alignment to achieve a more reasonable result
6
Outline Multiple Sequence Alignment What, Why, and How Multiple Sequence Alignment Methods Multidimensional dynamic programming Star Alignment Tree Alignment Progressive Alignment Clustalw: a widely used algorithm Iterative Alignment Genetic Algorithm
7
Multiple Sequence Alignment by DP Pairwise sequence alignment a scoring matrix where each position provides the best alignment up to that point Extension to 3 sequences the lattice of a cube that is to be filled with calculated dynamic programming scores. Scoring positions on 3 surfaces of the cube represent the alignment of a pair
8
Scoring of MSA: Sum of Pairs Scores = summation of all possible combinations of amino acid pairs Using BLOSUM62 matrix, gap penalty -8 In column 1, we have pairs -,S S,S k(k-1)/2 pairs per column -IK SIK SSE -8 - 8 + 4 = -12
9
Sum of Pairs Given 5 sequences: N C C E N N C E N - C N S C S N S C S E How many possible combinations of pairwise alignments for each position?
10
Sum of Pairs Assume: match/mismatch/gap = 1/0/-1 N C C E N N C E N - C N S C S N S C S E The 1 st position: # of N-N (3), # of S-S (1), # of N-S (6) SP(1) = 4*1 + 0*6 + (-1)*0 = 4 The 2 nd position: # of C-C (3), # of N-C (3), # of gaps (4), SP(2) = 3*1 + 0*3 + (-1)*4 = -1
11
G T G C T T G A TGGCCTTGGCCT Dynamic programming matrix Pairwise alignment Gap in sequence 2 Match/Mismatch Gap in sequence 1 Seq 1 Seq 2
12
Multiple sequence alignment Dynamic programming matrix many possibilities SMVSMV S M T A M V Seq 1 Seq 2 Seq 3
13
DP Alignment Examples All three match/mismatch Sequence 1 & 2 match/mismatch with gap in 3 Sequence 1 & 3 match/mismatch with gap in 2 Sequence 2 & 3 match/mismatch with gap in 1 Sequence 1 with gaps in 2 & 3 Sequence 2 with gaps in 1 & 3 Sequence 3 with gaps in 1 & 2 Choose the largest value among the above seven possibilities
14
Computational Complexity For protein sequences each 300 amino acid in length & excluding gaps, with DP algorithm Two sequences, 300 2 comparisons Three sequences, 300 3 comparisons N sequences, 300 N comparisons O(L N ) L: length of the sequences; N: number of sequences The number of comparisons & memory required are too large for n > 3 and not practical
15
Outline Multiple Sequence Alignment What, Why, and How Multiple Sequence Alignment Methods Multidimensional dynamic programming Star Alignment Tree Alignment Progressive Alignment Clustalw: a widely used algorithm Iterative Alignment Genetic Algorithm
16
Star Alignments Heuristic method for multiple sequence alignments Select a sequence s c as the center of the star For each sequence s 1, …, s k such that index i c, perform a global alignment (using DP) Aggregate alignments with the principle “once a gap, always a gap.”
17
Star Alignments Example s2s2 s1s1 s3s3 s4s4 s 1 : MPE s 2 : MKE s 3 : MSKE s 4 : SKE MPE | MKE MSKE - || MKE || SKE MPE MKE -MPE -MKE MSKE -MPE -MKE MSKE -SKE
18
Choosing a center Try them all and pick the one with the best score Calculate all O(k 2 ) alignments, and pick the sequence s c that maximizes
19
Star Alignment Example S1=ATTGCCATT S2=ATGGCCATT S3=ATCCAATTTT S4=ATCTTCTT S5=ATTGCCGATT s1s1 s2s2 s3s3 s4s4 s5s5 s1s1 7-20-3 s2s2 7-20-4 s3s3 -2 0-7 s4s4 000-3 s5s5 -4-7-3 2 1 -11 -3 -17
20
Star Alignments Example Merging Pairwise Alignment
21
Star Alignment Example Merging Pairwise Alignment
22
Analysis Assuming all sequences have length n O(n 2 ) to calculate global alignment O(k 2 ) global alignments to calculate Using a reasonable data structure for joining alignments, no worse than O(kl), where l is upper bound on alignment lengths O(k 2 n 2 +kl)=O(k 2 n 2 ) overall cost
23
Outline Multiple Sequence Alignment What, Why, and How Multiple Sequence Alignment Methods Multidimensional dynamic programming Star Alignment Tree Alignment Progressive Alignment Clustalw: a widely used algorithm Iterative Alignment Genetic Algorithm
24
Tree Alignment Compute the overall similarity based on pairwise alignment along the edge The sum of all these weights is the score of the tree sequence sequence S 2 sequence S 1 weight : sim(s 1,s 2 ) Consensus String The consensus string derived from multiple alignment is the concatenation of the consensus characters for each column. The consensus character for column is the character that minimizes the summed distance to it from all the characters in column
25
Tree Alignment Example Scoring system used is CAT GT CTG CG CAT - GT CTG 3 0 1 3 1 We have a score of 8 CAT CTG C - G
26
Tree Alignment Example
27
Example
34
Analysis We don’t know the correct tree Without the tree, the tree alignment problem is NP-complete Likely only exponential time solution available (for optimal answers)
35
Outline Multiple Sequence Alignment What, Why, and How Multiple Sequence Alignment Methods Multidimensional dynamic programming Star Alignment Tree Alignment Progressive Alignment Clustalw: a widely used algorithm Iterative Alignment Genetic Algorithm
36
Progressive Methods DP-based MSA program is limited in 3 sequences or to a small # of relatively short sequences Progressive alignments uses DP to build a msa starting with the most related sequences and then progressively adding less-related sequences or groups of sequences to the initial alignment Most commonly used approach
37
Progressive Methods Progressive alignment is heuristic. It does not separate the process of scoring an alignment from the optimization algorithm It does not directly optimize any global scoring scoring function of “alignment correctness”. It is fast, efficient and the results are reasonable. We will illustrate this using ClustalW.
38
Progressive MSA occurs in 3 stages 1. Do a set of global pairwise alignments (Needleman and Wunsch) 2. Create a guide tree 3. Progressively align the sequences
39
ClustalW Procedure
40
Progressive Methods: ClustalW http://www.ebi.ac.uk/clustalw/ ClustalW is a general purpose multiple alignment program for DNA or proteins. ClustalW: The W standing for “weighting” to represent the ability of the program to provide weights to the sequence and program parameters. CLUSTALX provides a graphic interface
41
Operational options Output options Input options, matrix choice, gap opening penalty Gap information, output tree type File input in GCG, FASTA, EMBL, GenBank, Phylip, or several other formats Use Clustal W to do a progressive MSA
42
Progressive MSA stage 3 of 3 : progressive alignment Make a MSA based on the order in the guide tree Start with the two most closely related sequences Then add the next closest sequence Continue until all sequences are added to the MSA
43
Problems w/ Progressive Alignment Highly sensitive to the choice of initial pair to align. The very first sequences to be aligned are the most closely related on the sequence tree. If alignment good, few errors in the initial alignment The more distantly related these sequences, the more errors Errors in alignment propagated to the MSA
44
Outline Multiple Sequence Alignment What, Why, and How Multiple Sequence Alignment Methods Multidimensional dynamic programming Star Alignment Tree Alignment Progressive Alignment Clustalw: a widely used algorithm Iterative Alignment Genetic Algorithm
45
Iterative Methods Results do NOT depend on the initial pairwise alignment (recall progressive methods) Starting with an initial alignment and repeatedly realigning groups of the sequences Repeat until one MSA doesn’t change significantly from the next. After iterations, alignments are better and better. An example is genetic algorithm approach.
46
Genetic Algorithms A general problem solving method modeled on evolutionary change. Inspired by the biological evolution process Uses concepts of “Natural Selection” and “Genetic Inheritance” (Darwin 1859) Create a set of candidate solutions to your problem, and cause these solutions to evolve and become more and more fit over repeated generations. Use survival of the fittest, mutation, and crossover to guide evolution.
47
Genetic Search Algorithms Random generation (candidate solutions) Evaluation (fitness function) Selection (candidate solutions with larger fitness values will have larger chance to be included) Crossover + Mutation (change some selected candidate solutions to converge to the optimal solution and to prevent a local extreme
48
Outline Multiple Sequence Alignment What, Why, and How Multiple Sequence Alignment Methods Multidimensional dynamic programming Star Alignment Tree Alignment Progressive Alignment Clustalw: a widely used algorithm Iterative Alignment Genetic Algorithm
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.