Download presentation
Presentation is loading. Please wait.
Published byRussell Henry Modified over 8 years ago
1
Lecture 1 BNFO 601 Usman Roshan
2
Course overview Perl progamming language (and some Unix basics) –Unix basics –Intro Perl exercises –Dynamic programming and Viterbi algorithm in Perl Sequence analysis –Algorithms for exact and heuristic pairwise alignment –Hidden Markov models –BLAST –Short read and genome alignments Genome-wide association studies (if time permits)
3
Overview (contd) Grade: Two 25% exams, 30% final exam, and three programming assignments (20%) Exams will cover Perl and bioinformatics algorithms Recommended Texts: –Introduction to Bioinformatics Algorithms by Pavel Pevzner and Neil Jones –Biological sequence analysis by Durbin et. al. –Introduction to Bioinformatics by Arthur Lesk –Beginning Perl for Bioinformatics by James Tisdall –Introduction to Machine Learning by Ethem Alpaydin
4
Nothing in biology makes sense, except in the light of evolution AAGACTT -3 mil yrs -2 mil yrs -1 mil yrs today AAGACTT T_GACTTAAGGCTT _GGGCTTTAGACCTTA_CACTT ACCTT (Cat) ACACTTC (Lion) TAGCCCTTA (Monkey) TAGGCCTT (Human) GGCTT (Mouse) T_GACTTAAGGCTT AAGACTT _GGGCTTTAGACCTTA_CACTT AAGGCTTT_GACTT AAGACTT TAGGCCTT (Human) TAGCCCTTA (Monkey) A_C_CTT (Cat) A_CACTTC (Lion) _G_GCTT (Mouse) _GGGCTTTAGACCTTA_CACTT AAGGCTTT_GACTT AAGACTT
5
Representing DNA in a format manipulatable by computers DNA is a double-helix molecule made up of four nucleotides: –Adenosine (A) –Cytosine (C) –Thymine (T) –Guanine (G) Since A (adenosine) always pairs with T (thymine) and C (cytosine) always pairs with G (guanine) knowing only one side of the ladder is enough We represent DNA as a sequence of letters where each letter could be A,C,G, or T. For example, for the helix shown here we would represent this as CAGT.
6
Transcription and translation
7
Amino acids Proteins are chains of amino acids. There are twenty different amino acids that chain in different ways to form different proteins. For example, FLLVALCCRFGH (this is how we could store it in a file) This sequence of amino acids folds to form a 3-D structure
8
Protein folding
9
The protein folding problem is to determine the 3-D protein structure from the sequence. Experimental techniques are very expensive. Computational are cheap but difficult to solve. By comparing sequences we can deduce the evolutionary conserved portions which are also functional (most of the time).
10
Protein structure Primary structure: sequence of amino acids. Secondary structure: parts of the chain organizes itself into alpha helices, beta sheets, and coils. Helices and sheets are usually evolutionarily conserved and can aid sequence alignment. Tertiary structure: 3-D structure of entire chain Quaternary structure: Complex of several chains
11
Key points DNA can be represented as strings consisting of four letters: A, C, G, and T. They could be very long, e.g. thousands and even millions of letters Proteins are also represented as strings of 20 letters (each letter is an amino acid). Their 3-D structure determines the function to a large extent.
12
Comparison of sequences Fundamental in bioinformatics Many applications –Evolutionary conserved regions –Functional sites in proteins –Phylogeny reconstruction –Protein structural contact prediction –Gene splicing –Genome assembly –Database search
13
Pairwise sequence alignment Comparison of two sequences We want to determine the substitutions, insertions, and deletions that occurred between the two sequences
14
Pairwise alignment How to align two sequences? We use dynamic programming Treat DNA sequences as strings over the alphabet {A, C, G, T}
15
Pairwise alignment
16
Dynamic programming Define V(i,j) to be the optimal pairwise alignment score between S 1..i and T 1..j (|S|=m, |T|=n)
17
Dynamic programming Time and space complexity is O(mn) Define V(i,j) to be the optimal pairwise alignment score between S 1..i and T 1..j (|S|=m, |T|=n)
18
How do we understand this dynamic programming algorithm? Let’s first look at some example alignments Let’s look at gaps. How do we know where to insert gaps Let’s look at the structure of an optimal alignment of two sequences x and y and how it relates optimal alignments of subsequences of x and y
19
How do we pick gap parameters?
20
Structural alignments Recall that proteins have 3-D structure.
21
Structural alignment - example 1 Alignment of thioredoxins from human and fly taken from the Wikipedia website. This protein is found in nearly all organisms and is essential for mammals. PDB ids are 3TRX and 1XWC.
22
Structural alignment - example 2 Computer generated aligned proteins Unaligned proteins. 2bbm and 1top are proteins from fly and chicken respectively. Taken from http://bioinfo3d.cs.tau.ac.il/Align/FlexProt/flexprot.html
23
Structural alignments We can produce high quality manual alignments by hand if the structure is available. These alignments can then serve as a benchmark to train gap parameters so that the alignment program produces correct alignments.
24
Benchmark alignments Protein alignment benchmarks –BAliBASE, SABMARK, PREFAB, HOMSTRAD are frequently used in studies for protein alignment. –Proteins benchmarks are generally large and have been in the research community for sometime now. –BAliBASE 3.0BAliBASE 3.0
25
Comparison of two alignments How can we quantify the “correctness” of a test alignment with respect to a reference? We measure the number of pairs in the test that are also aligned in the reference alignment. This is also called the sum-of-pairs accuracy.
26
Biologically realistic scoring matrices PAM and BLOSUM are most popular PAM was developed by Margaret Dayhoff and co-workers in 1978 by examining 1572 mutations between 71 families of closely related proteins BLOSUM is more recent and computed from blocks of sequences with sufficient similarity
27
Computing scoring matrices Start with a set of reference alignments Suppose we want to compute the score of A aligning to C Count the number of times A aligns to C Count the number of A’s and C’s Compute p AC the probability of A aligning to C and p A and p C the background probabilities of A and C Compute the log likelihood ratio
28
Next week Basics of Unix Perl programming –Basics –Exercises –Dynamic programming solution to sequence alignment in Perl
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.