Bioinformatics and Computer Science Ina Koch TFH Berlin
Bioinformatics and Computer Science Ina Koch TFH Berlin, Master‘s course Bioinformatics http: //www. tfh-berlin. de/bi/ Cottbus, 8 th of October 2004
Outline Introduction SNP analysis in the human genome Dynamic programming as basis for sequence comparison Summary and outlook
Bioinformatics-Computational Biology Ø Data collection and storage - data base techniques, integrative, data bases Ø Data visualisation - computer graphics, molecule graphics Ø Micro. Array analysis – pattern recognition, statistics Ø Data analysis sequence - string algorithms, dynamic programming structure - graph theory, AI, knowledge acquisition networks - graph theory, Petri nets, computer algebra Ø Drug Design, Molecular Modelling - parallel algorithms
Outline Introduction SNP analysis in the human genome Dynamic programming as basis for sequence comparison Summary and outlook
SNP analysis in the human genome The average human being exhibits ~100 new mutations. The mutation of one nucleotide (point mutation) in the genome: Single Nucleotide Polymorphism - SNP, if it occurs with more than 1% in a population. non-synonymous: causes a mutation of the amino acid synonymous: TTT - Phe TTA - Leu codes the same amino acid TTT - Phe TTC - Phe
SNPs – some numbers Two individuals: some millions nucleotide differences ~ 100, 000 amino acid differences Within a population: 1/300 bp differences ~ half of the SNPs in coding regions are none-synonymous. In two equal chromosomes: 1/1000 bp differences (nucleotide-variety) Most frequent type: transition C T (G A) 2/3 of all SNPs
Why SNPs are interesting? Medical questions CD - CV hypothesis (Common Disease - Common Variant) Example: Apo. E*E 4 allele of Alzheimer’s disease • How many SNPs are associated with diseases? • How can we identify these SNPs? • Ho many none-synonymous SNPs are damaging the structure or function of the protein? • How can we identify these SNPs?
A disease causing SNP The human Hemochromatosis protein (1 A 6 Z) Frequency: ~ 6% in north Europe ~ 14% in Irland
Search for SNPs in data bases Data bases SWISS-PROT OMIM HGBASE db. SNP HSSP Filter Keywords: ‘ 3 D STRUCTURE‘ and ‘DISEASE MUTATION’ Keywords: ‘ 3 D STRUCTURE‘ and ‘POLYMORPHISM’, but not ‘DISEASE MUTATION’ Allelic variants with >1% frequency in ‘normal’ humans BLASTX search against HSSP Search for close homologues (>95% similarity) in other species for all until now selected proteins and mutations Results 1 551 disease causing mutations 459 allelic variants 440 neutral mutations between species
Prediction of functiondamaging effect Active sites, binding sites Analysis of the multiple alignment Disulfide bridges Hydrophobicity in the protein core Solvent accessibility Interactions with hetero atoms
Prediction rules The amino acid variant is function-damaging, if 1. it is located in a region annotated in SWISS-PROT as ACTIVE_SITE, BINDING_SITE, MOD_RES, DISULFID, METAL or 2. it is not compatible with the amino acid substitutions at the same position of homologous proteins, or 3. it is located inside of the protein core and causes a change in the electrostatic potential, or 4. it is located at the protein surface and changes the surface accessibility of the protein, or 5. it concerns a proline residue in a helix, 6. its minimal distance to hetero atoms (except water) < 6 Å. or
Results Control predictions on proteins with known function-damaging mutations total predicted absolute percent Disease causing Mutations 60 54 90 Function-damaging mutations artificially generated 54 43 80
Results total as function-damaging predicted absolute percent All Polymorphisms 459 156 34 Experimentally proved Polymorphisms 245 79 32
False-negative predictions isoleucine
False-negative predictions serine
False-negative predictions K A L K S L K G L K T F K A L K K L T N Q K K Q E S K K A K G G G G N J N I I L I V L S L L V S S S T T E D E P P P P S T S F F F F F H H H H F F Y E E E E P P P Homo sapiens Ovis aries Gallus gallus Sminthopsis macroura Petaurus breviceps Rana catesbiana Sparus aurata Escherichia coli Salmonella dublin Caenorhabelzis elegans Part of the multiple alignment of the human transthyretin
False-negative predictions
False-negative predictions
False-negative predictions
Outline Introduction SNP analysis in the human genome Dynamic programming as basis for sequence comparison Summary and outlook
Sequence Alignment Search for evolutionary or functional similarity Input: two nucleotide or amino acid sequences Desired output: biologically meaningful similarity Scoring of an alignment: Sum over all scores for each aligned pair and the gap penalties Score for amino acid pairs: substitution matrices (PAM, BLOSUM) Difficulty to set gap penalties Search for the optimal global alignment
Sequence Alignment Human alpha globin and human beta globin: true HBA_HUMAN GSAQVKGHGKKVADALTNAVAHVDDMPNALSALSDLHAHKL G+ +VK+HGKKV A+++++AH+D++LS+LH KL HBB_HUMAN GNPKVKAHGKKVLGAFSDGLAHLDNLKGTFATLSELHCDKL Human alpha globin and leghaemoglobin from yellow lupin: true HBA_HUMAN GSAQVKGHGKKVADALTNAVAHV---D--DMPNALSALSDLHAHKL ++ ++++H+ KV + +A ++ +L+ L+++H+ K LGB 2_LUPLU NNPELQAHAGKVFKLVYEAAIQLQVTGVVVTDATLKNLGSVHVSKG Human alpha globin and glutathione S-transferase: false HBA_HUMAN GSAQVKGHGKKVADALTNAVAHVDDMPNALSALSD----LHAHKL GS+ + G + +D L ++ H+ D+ A +AL D ++AH+ F 11 G 11. 2 GSGYLVGDSLTFVDLL--VAQHTADLLAANAALLDEFPQFKAHQE
Dynamic Programming Ø Application to optimisation problems Ø Development of an dynamic programming algorithm (1) characterise the structure of an optimal solution (2) recursively define the value of an optimal solution (3) compute the value of an optimal solution in a bottom-up fashion (4) construct an optimal solution from computed information
Dynamic Programming - Example M H 0 P A W H E A E -8 -16 -24 -32 -40 -48 -56 E A G A W -8 -16 -24 -32 -40 -48 – 2 -2 -3 10 0 -2 0 -1 -1 -3 0 6 -1 5 -3 -2 -1 5 -1 -2 0 -3 -2 -3 0 -3 -1 5 -3 -2 -3 5 -3 -4 -3 15 -3 -1 Initialisation with BLOSUM 50 G H E E -56 -64 -72 -80 -2 0 -3 -2 -3 0 -3 -2 -2 -3 10 0 -2 0 -1 -1 -3 0 6 -1 6
Dynamic Programming - Example (1) Optimal solution: the alignment with the highest score (2) Recursive solution: Three ways an alignment can be extended up to ( i, j ) (a) xi aligned to yj (b) xi aligned to a gap (c) yj aligned to a gap { M ( i, j ) = max F ( I - 1, j - 1 ) + s ( x i, yj ) F ( i-1, j ) – d F (I, j-1 ) – d d: gap penalty, s (xi, yj ): score of the pair (xi, yj)
Dynamic Programming - Example M H 0 P A W H E A E -8 -16 -24 -32 -40 -48 -56 E A G A W -8 -16 -24 -32 -40 -48 – 2 -2 -3 10 0 -2 0 -1 -1 -3 0 6 -1 5 -3 -2 -1 5 -1 -2 0 -3 -2 -3 0 -3 Computation of M ( 1, 1 ) -1 5 -3 -2 -3 5 -3 -4 -3 15 -3 -1 G H E E -56 -64 -72 -80 -2 0 -3 -2 -3 0 -3 -2 -2 -3 10 0 -2 0 -1 -1 -3 0 6 -1 6
Dynamic Programming - Example M H 0 P A W H E A E -8 -16 -24 -32 -40 -48 -56 E A G A W -8 -16 -24 -32 -40 -48 – 2 -2 -3 10 0 -2 0 -9 -1 -3 0 6 -1 5 -3 -2 -1 5 -1 -2 0 -3 -2 -3 0 -3 Computation of M ( 1, 2 ) -1 5 -3 -2 -3 5 -3 -4 -3 15 -3 -1 G H E E -56 -64 -72 -80 -2 0 -3 -2 -3 0 -3 -2 -2 -3 10 0 -2 0 -1 -1 -3 0 6 -1 6
Dynamic Programming - Example M H 0 P A W H E A E -8 -16 -24 -32 -40 -48 -56 E A G A W -8 -16 -24 -32 -40 -48 – 2 -2 -3 10 0 -2 0 -9 -17 -1 5 -3 -3 0 -2 6 -1 -1 5 6 -1 -2 0 -3 -2 -3 0 -3 Computation of M ( 1, 3 ) -1 5 -3 -2 -3 5 -3 -4 -3 15 -3 -1 G H E E -56 -64 -72 -80 -2 0 -3 -2 -3 0 -3 -2 -2 -3 10 0 -2 0 -1 -1 -3 0 6 -1 6
Dynamic Programming - Example M H 0 P A W H E A E -8 -16 -24 -32 -40 -48 -56 E A G A W -8 -16 -24 -32 -40 -48 – 2 -2 -3 10 0 -2 0 -9 -17 -25 -1 5 0 -3 -3 -3 0 -2 -2 6 -1 -3 -1 5 0 6 -1 -3 Computation of M ( 1, 4 ) -1 5 -3 -2 -3 5 -3 -4 -3 15 -3 -1 G H E E -56 -64 -72 -80 -2 0 -3 -2 -3 0 -3 -2 -2 -3 10 0 -2 0 -1 -1 -3 0 6 -1 6
Dynamic Programming - Example M H 0 P A W H E A E -8 E A G A W G H E E -8 -16 -24 -32 -40 -48 -56 -64 -72 -80 – 2 -9 -17 -25 -33 -42 -49 -57 -65 -73 -20 -28 -36 -44 -52 -60 -15 -13 -21 -29 -37 -16 -10 -3 -4 -12 -24 -18 -11 -6 -7 -32 -14 -18 -13 -8 -9 -13 -7 -8 -16 -9 -12 -15 -40 -22 -48 -30 -16 -3 -11 -56 -38 -24 -11 -6 -5 -3 -11 -19 -7 3 -5 -11 -12 -15 -5 2 -14 -15 -12 -9 1 The completely calculated matrix
Dynamic Programming - Example Computation of the optimal alignment path M H 0 P A W H E A E -8 E A G A W G H E E -8 -16 -24 -32 -40 -48 -56 -64 -72 -80 – 2 -9 -17 -25 -33 -42 -49 -57 -65 -73 -20 -28 -36 -44 -52 -60 -15 -13 -21 -29 -37 -16 -10 -3 -4 -12 -24 -18 -11 -6 -7 -32 -14 -18 -13 -8 -9 -13 -7 -8 -16 -9 -12 -15 -40 -22 -48 -30 -16 -3 -11 -56 -38 -24 -11 The optimal alignment -6 -5 -3 -11 -19 -7 3 -5 -11 -12 -15 -5 2 -14 -15 -12 -9 1 HEAGAWGHE-E --P-AW-HEAE
Dynamic Programming - Example Needleman/Wunsch – algorithm for global alignment Needleman & Wunsch (1970) J. Mol. Biol. 48: 443 -453. O(n 3) Gotoh – algorithm for global alignment O(n 2) Gotoh (1982) J. Mol. Biol. 162: 705 -708. Smith/Watermann – algorithm for local alignment Smith & Waterman (1981) J. Mol. Biol. 147: 195 -197. O(n 2)
Summary SNP analysis as typical example for bioinformatics Sunyaev, Ramensky, Lathe III. , Kondrashov, Bork, Human Molecular Genetics (2001) 10: 591 -597. data base parsing multiple sequence alignment rule based system molecular modelling Application of dynamic programming to sequence alignment Gotoh algorithm for pair-wise global sequence alignment
Outlook Application of graph theory to protein structure analysis PTGL Protein Topology Graph Library http: //sanaga. tfh-berlin. de/~ptgl/ptgl. html May, Barthel, Koch (2004) Bioinformatics, in press. Koch (2001) Theoretical Computer Science 250: 1 -30. Investigations of Alternative Splicing Boué, Vingron, Koch (2002) Bioinformatics, suppl. 2, 18: S 65 -S 75. Kriventseva, Koch, Apweiler, Vingron, Bork, Gelfand, Sunyaev (2003)Trends in Genetics 19: 124 -128.
Outlook Modelling, analysis, and simulation of biological molecular networks using Petri net theory in co-operation with BTU Cottbus (Prof. M. Heiner) Voss, Heiner, Koch (2003) In Silico Biology 3: 0031. Heiner, Koch, Will (2004) Bio. Systems, Special Issue 75(1 -3): 15 -28. Heiner & Koch (2004) Proc. 25 th ICAPTN, LNCS 3099: 216 -237. Koch, Junker, Heiner (2004) Bioinformatics, in press. Ongoing projects: 1. Human glycolysis with coloured Petri nets 2. Metabolism in the human liver cell 3. G 1/S phase in the mammalian cell cycle 4. Duchenne muscle dystrophy Thomas Runge Daniel Schrödter Dr. Thomas Kaunath Stepfanie Grunwald
Thank you!
- Slides: 36