DOC PREVIEW
CMU CS 10701 - Computational biology: Sequence alignment and profile HMMs

This preview shows page 1-2-3-20-21-40-41-42 out of 42 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 42 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Computational biology: Sequence alignment and profile HMMs10-601 Machine Learning2Central dogmaProteinmRNADNAtranscriptiontranslationCCTGAGCCAACTATTGATGAAPEPTIDECCUGAGCCAACUAUUGAUGAA3Growth in biological dataLu et al Bioinformatics 20094Central dogmaProteinmRNADNAtranscriptiontranslationCCTGAGCCAACTATTGATGAAPEPTIDECCUGAGCCAACUAUUGAUGAACan be measured using sequencing techniquesCan be measured using microarraysCan be measured using mass spectrometry5FDA Approves Gene-Based Breast Cancer Test*“ MammaPrint is a DNA microarray-based test that measures the activity of 70 genes in a sample of a woman's breast-cancer tumor and then uses a specific formula to determine whether the patient is deemed low risk or high risk for the spread of the cancer to another site.”*Washington Post, 2/06/2007Input – Output HMM For Data IntegrationIgH0H1H2H3O0O1O2O3Active Learning89Assigning function to proteins• One of the main goals of molecular (and computational) biology.• There are 25000 human genes and the vast majority of their functions is still unknown• Several ways to determine function- Direct experiments (knockout, overexpression)- Interacting partners- 3D structures- Sequence homologyHardEasier10Function from sequence homology• We have a query gene: ACTGGTGTACCGAT• Given a database containing genes with known function, our goal is to find similar genes from this database (possibly in another organism)• When we find such gene we predict the function of the query gene to be similar to the resulting database gene• Problems- How do we determine similarity?11Sequence analysis techniques• A major area of research within computational biology.• Initially, based on deterministic or heuristic alignment methods• More recently, based on probabilistic inference methods12Sequence analysis• Traditional- Dynamic programming• Probabilsitic- Profile HMMs13Alignment: Possible reasons for differencesSubstitutionsInsertionsDeletions14Pairwise sequence alignmentACATTGAACATTA C A T T GA A C A T TAGCCTTAGCATTA G C C T TA G C A T T15Pairwise sequence alignmentAGCCTTACCATTA G C C T TA C C A T TAGCCTTAGCATTA G C C T TA G C A T T• We cannot expect the alignments to be perfect.• But we need to determine what is the reason for the difference (insertion, deletion or substitution).16Scoring AlignmentsjxixjiqqIyxP )|,(iyxiipMyxP )|,()log(),(,babaqqpbas • Alignments can be scored by comparing the resulting alignment to a background (random) model. Independent RelatedScore for alignment:),(iiiyxsSwhere:Can be computed for each pair of letters17Scoring AlignmentsjxixjiqqIyxP )|,(iyxiipMyxP )|,()log(),(,babaqqpbas • Alignments can be scored by comparing the resulting alignment to a background (random) model. Independent RelatedScore for alignment:),(iiiyxsSwhere:In other words, we are trying to find an alignment that maximizes the likelihood ratio of the aligned pair compared to the background model18Computing optimal alignment: The Needham-Wuncsh algorithmF(i-1,j-1) F(i-1,j)F(i,j-1) F(i,j)F(i,j) = maxF(i-1,j-1)+s(xi,xj)F(i-1,j)+dF(i,j-1)+dA G C C T TACCATTd is a penalty for a gap19ExampleA G C C T T0 -1 -2 -3 -4 -5 -6A -1C -2C -3A -4T -5T -6Assume a simple model where S(a,b) = 1 if a=b and -5 otherwise.Also, assume that d = -120ExampleAssume a simple model where S(a,b) = 1 if a=b and -5 otherwise.Also, assume that d = -1F(i,j) = maxF(i-1,j-1)+s(xi,xj)F(i-1,j)+dF(i,j-1)+dA G C C T T0 -1 -2 -3 -4 -5 -6A -1 1C -2C -3A -4T -5T -621ExampleAssume a simple model where S(a,b) = 1 if a=b and -5 otherwise.Also, assume that d = -1A G C C T T0 -1 -2 -3 -4 -5 -6A -1 1 0C -2 0C -3A -4T -5T -6F(i,j) = maxF(i-1,j-1)+s(xi,xj)F(i-1,j)+dF(i,j-1)+d22ExampleAssume a simple model where S(a,b) = 1 if a=b and -5 otherwise.Also, assume that d = -1A G C C T T0 -1 -2 -3 -4 -5 -6A -1 1 0 -1 -2 -3 -4C -2 0 -1C -3 -1A -4 -2T -5 -3T -6 -4F(i,j) = maxF(i-1,j-1)+s(xi,xj)F(i-1,j)+dF(i,j-1)+d23ExampleAssume a simple model where S(a,b) = 1 if a=b and -5 otherwise.Also, assume that d = -1A G C C T T0 -1 -2 -3 -4 -5 -6A -1 1 0 -1 -2 -3 -4C -2 0 -1 1 0 -1 -2C -3 -1 -2 0 2 1 0A -4 -2 -3 -1 1 0 -1T -5 -3 -4 -2 0 2 1T -6 -4 -5 -3 -1 1 324ExampleAssume a simple model where S(a,b) = 1 if a=b and -5 otherwise.Also, assume that d = -1A G C C T T0 -1 -2 -3 -4 -5 -6A -1 1 0 -1 -2 -3 -4C -2 0 -1 1 0 -1 -2C -3 -1 -2 0 2 1 0A -4 -2 -3 -1 1 0 -1T -5 -3 -4 -2 0 2 1T -6 -4 -5 -3 -1 1 325ExampleAssume a simple model where S(a,b) = 1 if a=b and -5 otherwise.Also, assume that d = -1A G C C T T0 -1 -2 -3 -4 -5 -6A -1 1 0 -1 -2 -3 -4C -2 0 -1 1 0 -1 -2C -3 -1 -2 0 2 1 0A -4 -2 -3 -1 1 0 -1T -5 -3 -4 -2 0 2 1T -6 -4 -5 -3 -1 1 3A G C C T TA C C A T T26Running time• The running time of an alignment algorithms if O(n2)• This doesn’t sound too bad, or is it?• The time requirement for doing global sequence alignment is too high in many cases.• Consider a database with tens of thousands of sequences. Looking through all these sequences for the best alignment is too time consuming.• In many cases, a much faster heuristic approach can achieve equally good results.27Sequence analysis• Traditional- Dynamic programming• Probabilsitic- Profile HMMs28Protein families• Proteins can be classified into families (and further into sub families etc.)• A specific family includes proteins with similar high level functions• For example:- Transcription factors- Receptors- Etc.Family assignment is an important first step towards function prediction29Methods for Characterizing a Protein Family• Objective: Given a number of related sequences, encapsulate what they have in common in such a way that we can recognize other members of the family. • Some standard methods for characterization:– Multiple Alignments– Regular Expressions– Consensus Sequences– Hidden Markov Models30Multiple Alignment Process• Process of aligning three or more sequences with each other• We can determine such alignment by generalizing the algorithm to align two sequences• Running time exponential in the number of sequences31Training a HMM from an existing alignment– Start with a predetermined number of states accounting for matches, insertions and deletions.– For each position in the model, assign a column in the multiple alignment that is relatively conserved.– Emission probabilities are set according to amino acid counts in columns.–


View Full Document

CMU CS 10701 - Computational biology: Sequence alignment and profile HMMs

Documents in this Course
lecture

lecture

12 pages

lecture

lecture

17 pages

HMMs

HMMs

40 pages

lecture

lecture

15 pages

lecture

lecture

20 pages

Notes

Notes

10 pages

Notes

Notes

15 pages

Lecture

Lecture

22 pages

Lecture

Lecture

13 pages

Lecture

Lecture

24 pages

Lecture9

Lecture9

38 pages

lecture

lecture

26 pages

lecture

lecture

13 pages

Lecture

Lecture

5 pages

lecture

lecture

18 pages

lecture

lecture

22 pages

Boosting

Boosting

11 pages

lecture

lecture

16 pages

lecture

lecture

20 pages

Lecture

Lecture

20 pages

Lecture

Lecture

39 pages

Lecture

Lecture

14 pages

Lecture

Lecture

18 pages

Lecture

Lecture

13 pages

Exam

Exam

10 pages

Lecture

Lecture

27 pages

Lecture

Lecture

15 pages

Lecture

Lecture

24 pages

Lecture

Lecture

16 pages

Lecture

Lecture

23 pages

Lecture6

Lecture6

28 pages

Notes

Notes

34 pages

lecture

lecture

15 pages

Midterm

Midterm

11 pages

lecture

lecture

11 pages

lecture

lecture

23 pages

Boosting

Boosting

35 pages

Lecture

Lecture

49 pages

Lecture

Lecture

22 pages

Lecture

Lecture

16 pages

Lecture

Lecture

18 pages

Lecture

Lecture

35 pages

lecture

lecture

22 pages

lecture

lecture

24 pages

Midterm

Midterm

17 pages

exam

exam

15 pages

Lecture12

Lecture12

32 pages

lecture

lecture

19 pages

Lecture

Lecture

32 pages

boosting

boosting

11 pages

pca-mdps

pca-mdps

56 pages

bns

bns

45 pages

mdps

mdps

42 pages

svms

svms

10 pages

Notes

Notes

12 pages

lecture

lecture

42 pages

lecture

lecture

29 pages

lecture

lecture

15 pages

Lecture

Lecture

12 pages

Lecture

Lecture

24 pages

Lecture

Lecture

22 pages

Midterm

Midterm

5 pages

mdps-rl

mdps-rl

26 pages

Load more
Download Computational biology: Sequence alignment and profile HMMs
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Computational biology: Sequence alignment and profile HMMs and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Computational biology: Sequence alignment and profile HMMs 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?