290 likes | 302 Views
Explore the methods and tools for comparing and aligning DNA, RNA, and amino acid sequences to reveal homology, structure, and function. Learn about dynamic programming algorithms, statistical analysis, and sequence alignment techniques.
E N D
a gene transcription pre-mRNA splicing mature mRNA translation Human 3x109 bp Genome: ~30,000 genes ~200,000 exons ~23 Mb coding ~15 Mb noncoding protein Reminder -Structure of a genome
Sequence Alignment • We assume a link between the linear information stored in DNA, RNA or amino-acid sequence and the protein function determined by its three dimensional structure. • We want to compare the linear sequence between various genes, in order to deduce function, phylogeny, structure,origin… • The level of similarity is the homology
The Problem Biological problem Finding a way to compare and represent similarity or dissimilarity between biomolecular sequences (DNA, RNA or amino acid) Computational problem Finding a way to perform inexact or approximate matching of subsequences within strings of characters Statistical problem How to estimate the validity of our results
Course plan (for the next three weeks) • Details of biology • Estimate of computation time • Dynamic programming algorithm for full an local alignment • Statistical analysis of results • Dot matrices and heuristics for alignment • Distance matrices and information theory • (MSA)
Homology • Similarity due to descent from a common ancestor • Homologous sequences can be identified through sequence alignment • Thus, possible to predict/infer structure or function from primary sequence analysis
Gaps • Sequences may have diverged from common ancestor through mutations: • Substitution (AAGCAAGT) • Insertion (AAGAAGT) • Deletion (AAGCAAG) • Latter two operations result in gaps ( _ ) • K contiguous spaces = gap of length K ( > 0 )
Similarity and Alignment • Similarity has two aspects: • Quantitative aspect: Similarity measure • A number that represents degree of similarity • Example: a score indicating 10% match between 2 DNA sequences. • Qualitative aspect: An alignment • a mutual arrangement of two sequences that shows where the two sequences are similar, and where they differ. An optimal alignment is one that exhibits the most correspondences, and the least differences. • Example: a b c d e – h z a b w d e f h _
The Edit Distance between two strings • Definition: • The edit distance between two strings is defined as the minimum number of edit operations – insertions, deletions, & substitutions – needed to transform the first string into the second. For emphasis, note that matches are not counted. • Example: • AATT and AATG • Distance = 1 (edit operation of substitution)
String alignment • An edit transcript is a way to represent a particular transformation of one string into another • Emphasizes point mutations in the model • An alignment displays a relationship between two strings • Global alignment means for each string, entire string is involved in the alignment • Examples: (1) A A G C A (2) GSAQVKGHGKKVADAL …. A A _ C _++ ++++H+ KV + …. NNPELQAHAGKVFKLV ….
Alignment vs. Edit Transcript • Essentially equivalent: • Two opposing characters in an alignment a substitution in edit transcript • A gap or space in an alignment in first string an insertion of opposing character • A gap or space in second string a deletion of opposing character • product vs. process
Gap cost or penalty functions • Observation: • Gap of length k more probable than k gaps of length 1 • Cause might be single mutational event • Separated gaps probably arose due to different events • Gap penalty functions: • Linear cost: Treats both cases uniformly • Common to use a higher cost for h for opening a gap and a lower cost g for extending a gap
Pairwise Sequence Alignment • Example • Which one is better? HEAGAWGHEE PAWHEAE HEAGAWGHE-E HEAGAWGHE-E P-A--W-HEAE --P-AW-HEAE
Example • Gap penalty: -8 • Gap extension: -3 HEAGAWGHE-E --P-AW-HEAE (-8) + (-8) + (-1) + 5 + 15 + (-8) + 10 + 6 + (-8) + 6 = 9 HEAGAWGHE-E Exercise: Calculate for P-A--W-HEAE
Formal Description • Problem:PairSeqAlign • Input: Two sequences x,y Scoring matrix s Gap penalty d Gap extension penalty e • Output: The optimal sequence alignment
How Difficult Is This? • Given two sequences of length m and n. • How many alignments are there? f(m,n) • How many non-equivalent alignments are there ? g(m,n)
F(n,m) • F(n,m)=f(n-1,m)+f(n,m-1)+f(n-1,m-1)
So what? • So at n = 20, we have over 120 billion possible alignments • We want to be able to align much, much longer sequences • Some proteins have 1000 amino acids • Genes can have several thousand base pairs
Dynamic Programming • General algorithmic development technique • Reuses the results of previous computations • Store intermediate results in a table for reuse • Look up in table for earlier result to build from
Global Alignment • Needleman-Wunsch 1970 • Idea: Build up optimal alignment from optimal alignments of subsequences HEAG --P- -25 Add score from table HEAG- --P-A -33 HEAGA --P-A -20 HEAGA --P— -33 Gap with bottom Top and bottom Gap with top
Global Alignment • Notation • xi – ith letter of string x • yj – jth letter of string y • x1..i – Prefix of x from letters 1 through I • F – matrix of optimal scores • F(i,j) represents optimal score lining up x1..i with y1..j • d – gap penalty • s – scoring matrix
Global Alignment • The work is to build up F • Initialize: F(0,0) = 0, F(i,0) = id, F(0,j)=jd • Fill from top left to bottom right using the recursive relation
Global Alignment yj aligned to gap Move ahead in both s(xi,yj) d d xi aligned to gap While building the table, keep track of where optimal score came from, reverse arrows
Completed Table Score Gap –8 Error –2 Fit +6
Traceback • Trace arrows back from the lower right to top left • Diagonal – both • Up – upper gap • Left – lower gap HEAGAWGHE-E --P-AW-HEAE
Summary • Uses recursion to fill in intermediate results table • Uses O(nm) space and time • O(n2) algorithm • Feasible for moderate sized sequences, but not for aligning whole genomes.