Download presentation
Presentation is loading. Please wait.
1
. Class 4: Fast Sequence Alignment
2
Alignment in Real Life u One of the major uses of alignments is to find sequences in a “database” u Such collections contain massive number of sequences (order of 10 6 ) u Finding homologies in these databases with the standard dynamic programming can take too long
3
Heuristic Search u Instead, most searches rely on heuristic procedures u These are not guaranteed to find the best match u Sometimes, they will completely miss a high- scoring match u We now describe the main ideas used by some of these procedures Actual implementations often contain additional tricks and hacks
4
Basic Intuition u The main resource consuming factor in the standard DP is decision of where the gaps are. If there were no gaps, life was easy! u Almost all heuristic search procedures are based on the observation that real-life well-matching pairs of sequences often do contain long strings with gap-less matches. u These heuristics try to find significant local gap-less matches and then extend them.
5
Banded DP Suppose that we have two strings s[1..n] and t[1..m] such that n m u If the optimal global alignment of s and t has few gaps, then path of the alignment will be close to the diagonal s t
6
Banded DP u To find such a path, it suffices to search in a diagonal region of the matrix If the diagonal band has presumed width a, then the dynamic programming step takes O(an) Much faster than O(n 2 ) of standard DP in this case s t a
7
Banded DP Problem (for local alignment): If we know that t[i..j] matches the query s[p..q], then we can use banded DP to evaluate quality of the match u However, we do not know i,j,p,q ! u How do we select which sub-sequences to align using banded DP?
8
FASTA Overview u Main idea: Find (fast!) “good” diagonals and extend them to complete matches u Suppose that we have a relatively long gap-less local match (diagonal): …AGCGCCATGGATTGAGCGA… …TGCGACATTGATCGACCTA… u Can we find “clues” that will let us find it quickly?
9
Signature of a Match Assumption: good matches contain several “patches” of perfect matches AGCGCCATGGATTGAGCGA TGCGACATTGATCGACCTA s t
10
FASTA Given s and t, and a parameter k u Find all pairs (i,j) such that s[i..i+k] and t[j..j+k] match perfectly Locate sets of pairs that are on the same diagonal by sorting according to i-j thus … u Locating diagonals that contain many close pairs. This is faster than O(nm) ! s t i i+k j j+k
11
FASTA u Extend the “best” diagonal matches to imperfect (yet ungapped) matches, compute alignment scores per diagonal. Pick the best-scoring matches. u Try to combine close diagonals to potential gapped matches, picking the best-scoring matches. u Finally, run banded DP on the regions containing these matches, resulting in several good candidate alignments. Most applications of FASTA use very small k (2 for proteins, and 4-6 for DNA)
12
BLAST Overview u FASTA drawback is its reliance on perfect matches u BLAST (Basic Local Alignment Search Tool)uses similar intuition, but relies on high scoring matches rather than exact matches Given parameters: length k, and threshold T Two strings s and t of length k are a high scoring pair (HSP) if d(s,t) > T
13
High-Scoring Pair Given a query string s, BLAST construct all words w (“neighborhood words”), such that w is an HSP with a k -substring of s. Note that not all k-mers have an HSP in s u Search the database for perfect matches with neighborhood words. Those are “hits” for further alignment. We can locate seed words in a large database in a single pass, given the database is properly preprocessed (using hashing techniques).
14
Extending Potential Matches u Once a hit is found, BLAST attempts to find a local alignment that extends it. u Seeds on the same diagonal tend to be combined (as in FASTA) u There is a version of BLAST, involving gapped extensions. u BLAST implementation is generally faster then FASTA, arguably better. s t
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.