Introduction to Bioinformatics Outline

Total Page:16

File Type:pdf, Size:1020Kb

Introduction to Bioinformatics Outline Introduction to Bioinformatics Outline • Introduction to sequence alignment • pair wise sequence alignment Pairwise Sequence Alignment – The Dot Matrix – Scoring Matrices Prof. Dr. Nizamettin AYDIN – Gap Penalties – Dynamic Programming [email protected] 1 2 Introduction to sequence alignment Sequence Alignment • In molecular biology, a common question is to • Sequence Alignment ask whether or not two sequences are related. – the identification of residue-residue • The most common way to tell whether or not correspondences. they are related is to compare them to one • It is the basic tool of bioinformatics. another to see if they are similar. • Example: • Question: – pear and tear – Are two sequences related? • Similar words, different meanings • Compare the two sequences, – see if they are similar 3 4 Biological Sequences Relation of sequences • Similar biological sequences tend to be related • Homologs: – similar sequences in 2 different organisms derived from a common • Information: ancestor sequence. – Functional • Orthologs: – Structural – Similar sequences in 2 different organisms that have arisen due to a – Evolutionary speciation event. Functionality Retained. • Paralogs: • Common mistake: – Similar sequences within a single organism that have arisen due to a gene duplication event. – sequence similarity is not homology! • Xenologs: • Homologous sequences: – similar sequences that have arisen out of horizontal transfer events – derived from a common ancestor (symbiosis, viruses, etc) 5 6 Copyright 2000 N. AYDIN. All rights reserved. 1 Relation of sequences Use Protein Sequences for Similarity Searches • DNA sequences tend to be less informative than protein sequences • DNA bases vs. 20 amino acids - less chance similarity • Similarity of AAs can be scored – # of mutations, chemical similarity, PAM matrix • Protein databanks are much smaller than DNA databanks – less random matches. • Similarity is determined by pairwise alignment of Image Source: different sequences http://www.ncbi.nlm.nih.gov/Education/BLASTinfo/Orthology.html 7 8 Pairwise Alignment Sequence Alignment The concept • The alignment of two sequences (DNA or protein) is a relatively straightforward • An alignment is a mutual arrangement of two computational problem. sequences. • There are lots of possible alignments. – Pairwise sequence alignment • Two sequences can always be aligned. • It exhibits where the two sequences are similar, and where they differ. • Sequence alignments have to be scored. • An optimal alignment is one that exhibits the • Often there is more than one solution with the most correspondences, and the least same score. differences. • Sequences that are similar probably have the same function 9 10 Sequence Alignment Sequence Alignment Terms of sequence comparison Things to consider: • Sequence identity • to find the best alignment one needs to examine – exactly the same Amino Acid or Nucleotide in the all possible alignments same position • to reflect the quality of the possible alignments • Sequence similarity one needs to score them – substitutions with similar chemical properties • there can be different alignments with the same • Sequence homology highest score – general term that indicates evolutionary relatedness • variations in the scoring scheme may change the among sequences ranking of alignments – sequences are homologous if they are derived from a common ancestral sequence 11 12 Copyright 2000 N. AYDIN. All rights reserved. 2 Sequence Alignment Sequence Alignment Evolution: A protein sequence alignment Ancestral sequence: ABCD MSTGAVLIY--TSILIKECHAMPAGNE----- ---GGILLFHRTHELIKESHAMANDEGGSNNS * * * **** *** ACCD (B C) ABD (C ø) mutation deletion A DNA sequence alignment attcgttggcaaatcgcccctatccggccttaa ACCD or ACCD Pairwise Alignment att---tggcggatcg-cctctacgggcc---- AB─D A─BD *** **** **** ** ****** true alignment 13 14 Hamming or edit distance Hamming Distance • Simplest method in determining sequence • Minimum number of letters by which two similarity is to determine the edit distance words differ between two sequences • If we take the example of pear and tear, how • Calculated by summing number of mismatches similar are these two words? • An alignment of these two is as follows: • Hamming Distance between PEAR and TEAR is 1 P E A R | | | T E A R 15 16 Gapped Alignments Possible Residue Alignments • With biological sequences, it is often necessary to • An alignment can produce one of the align two sequences that are of – different lengths, following: – that have regions that have been inserted or deleted over – a match between two characters time. • Thus, the notion of gaps needs to be introduced. – a mismatch between two characters – gaps denoted by ‘-’ • also called a substitution or mutation • Consider the words alignment and ligament. – a gap in the first sequence – One alignment of these two words is as follows: • which can be thought of as the deletion of a character in A L I G N M E N T the first sequence | | | | | | | – a gap in the second sequence - L I G A M E N T • which can be thought of as the insertion of a character in the first sequence 17 18 Copyright 2000 N. AYDIN. All rights reserved. 3 Alignments Alignment Scoring Scheme • Consider the following two nucleic acid sequences: • One way to judge this is to assign – ACGGACT and ATCGGATCT. – a + score for each match, • The followings are two valid alignments: – a - score for each mismatch, – a - score for each insertion/deletion (indels). A – C – G G – A C T • Possible scoring scheme: | | | | | match: +2 mismatch: -1 indel: –2 A T C G G A T _ C T – Alignment 1: • 5 * 2 – 1(1) – 4(2) = 10 – 1 – 8 = 1 – Alignment 2: A T C G G A T C T • 6 * 2 – 1(1) – 2 (2) = 12 – 1 – 4 = 7 | | | | | | • Using the above scoring scheme, the 2nd alignment is a better alignment, A – C G G – A C T – since it produces a higher alignment score. • Which alignment is the better alignment? 19 20 Alignment Methods Visual Alignments (Dot Plots) • Visual • One of basic techniques for determining the alignment between two sequences is by using a visual alignment • Brute Force known as dot plots. • Dynamic Programming • Matrix – Rows: • Word-Based (k tuple) • Characters in one sequence – Columns: • Characters in second sequence • Filling – Loop through each row; • if character in row-column match, fill in the cell – Continue until all cells have been examined 21 22 The Dot Matrix Example Dot Plot • established in 1970 by A.J. Gibbs and G.A.McIntyre • method for comparing two amino acid or nucleotide sequences A G C T A G G A • each sequence builds one axis of G the grid A • one puts a dot, at the intersection of same letters appearing in both C sequences T • scan the graph for a series of dots A • reveals similarity • or a string of same G characters G • longer sequences can also be compared on a single page, by C using smaller dots 23 24 Copyright 2000 N. AYDIN. All rights reserved. 4 An entire software module of a telecommunications switch; about two million lines of C Information within Dot Plots • Darker areas indicate regions with a lot of • Dot plots are useful as a first-level filter for determining an matches alignment between two sequences. – a high degree of similarity • Lighter areas indicate – It reveals the presence of insertions or deletions regions with few matches • Comparing a single sequence to itself can reveal the presence – a low degree of similarity • Dark areas along the main of a repeat of a subsequence diagonal indicate sub- – Inverted repeats = reverse complement modules. • Used to determine folding of RNA molecules • Dark areas off the main diagonal indicate a degree • Self comparison can reveal several features: of similarity between sub- – similarity between chromosomes modules. – tandem genes • The largest dark squares are formed by redundancies – repeated domains in a protein sequence in initializations of signal- – regions of low sequence complexity (same characters are often tables and finite-state repeated) machines. 25 26 Insertions/Deletions Insertions/Deletions Two similar, but not identical, sequences An indel (insertion or deletion): • Regions containing insertions/deletions can be readily determined. • One potential application is to determine the number of coding regions (exons) contained within a processed mRNA. 27 28 Duplication Repeats/Inverted Repeats A tandem duplication: Self-dotplot of a tandem duplication: 29 30 Copyright 2000 N. AYDIN. All rights reserved. 5 Repeats/Inverted Repeats The Dot Matrix An inversion: Self dot plot with repeats: Joining sequences: 31 32 Comparing Genome Assemblies • Dot plots can also be used in order to compare two different assemblies of the same sequence. • Below are three dotplots of various chromosomes. • The 1st shows two separate assemblies of human chromosome 5 compared against each other. • The 2nd shows one assembly of chromosome 5 compared against itself, indicating the presence of repetitive regions. • The 3rd shows chromosome Y compared against itself, indicating the presence of inverted repeats. 33 34 Noise in Dot Plots Noise in Dot Plots The very stringent, self-dotplot: The non-stringent self-dotplot: • Nucleic Acids (DNA, RNA) – 1 out of 4 bases matches at random • To filter out random matches, – sliding windows are used – Percentage of bases matching in the window is set as threshold • A dot is printed only if a minimal number of matches occur • Rule of thumb: – larger windows for DNAs (only 4 bases, more random • Stringency is the quality or state of being stringent. matches) • stringent:
Recommended publications
  • Bioinformatics 1: Lecture 3
    Bioinformatics 1: Lecture 3 •Pairwise alignment •Substitution •Dynamic Programming algorithm Scoring matrix To prepare an alignment, we first consider the score for aligning (associating) any one character of the first sequence with any one character of the second sequence. A A G A C G T T T A G A C T 0 0 1 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 Exact match 0 0 1 0 0 1 0 0 0 0 1/0 0 0 0 0 0 0 1 1 1 0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 The cost of mutation is not a constant DNA: A change in the 3rd base in a codon, and sometimes the first base, sometimes conserves the amino acid. No selective pressure. Protein: A change in amino acids that are in the same chemical class conserve their chemical environment. For example: Lys to Arg is conservative because both a positively charged. Conservative amino acid changes N Lys <--> Arg C + N` N N` C N C + C C C N` C C C C O C O C C N N Ile <--> Leu C C C C C C C C O C O C C Ser <--> Thr Asp <--> Glu Asn <--> Gln If the “chemistry” of the sidechain is conserved, then the mutation is less likely to change structure/function.
    [Show full text]
  • BASS: Approximate Search on Large String Databases
    BASS: Approximate Search on Large String Databases Jiong Yang Wei Wang Philip Yu UIUC UNC Chapel Hill IBM [email protected] [email protected] [email protected] Abstract Similarity search on a string database can be classified into two categories: exact match and approximate match. The In this paper, we study the problem on how to build an index struc- search of exact match looks for substrings in the database, ture for large string databases to efficiently support various types of which is exactly identical to the query pattern while the search string matching without the necessity of mapping the substrings to of approximate match allows some types of imperfection such a numerical space (e.g., string B-tree and MRS-index) nor the re- as substitutions between certain symbols, some degree of mis- striction of in-memory practice (e.g., suffix tree and suffix array). alignment, and the presence of “wild-card” in the query pat- Towards this goal, we propose a new indexing scheme, BASS-tree, tern. We shall mention that supporting approximate match is to efficiently support general approximate substring match (in terms very important to many applications. For instance, biologists of certain symbol substitutions and misalignments) in sublinear time have observed that mutations between certain pair of amino on a large string database. The key idea behind the design is that all acids may occur at a noticeable probability in some proteins positions in each string are grouped recursively into a fully balanced and such a mutation usually does not alter the biological func- tree according to the similarities of the subsequent segments starting tion of the proteins.
    [Show full text]
  • Computational Biology Lecture 8: Substitution Matrices Saad Mneimneh
    Computational Biology Lecture 8: Substitution matrices Saad Mneimneh As we have introduced last time, simple scoring schemes like +1 for a match, -1 for a mismatch and -2 for a gap are not justifiable biologically, especially for amino acid sequences (proteins). Instead, more elaborated scoring functions are used. These scores are usually obtained as a result of analyzing chemical properties and statistical data for amino acids and DNA sequences. For example, it is known that same size amino acids are more likely to be substituted by one another. Similarly, amino acids with same affinity to water are likely to serve the same purpose in some cases. On the other hand, some mutations are not acceptable (may lead to demise of the organism). PAM and BLOSUM matrices are amongst results of such analysis. We will see the techniques through which PAM and BLOSUM matrices are obtained. Substritution matrices Chemical properties of amino acids govern how the amino acids substitue one another. In principle, a substritution matrix s, where sij is used to score aligning character i with character j, should reflect the probability of two characters substituing one another. The question is how to build such a probability matrix that closely maps reality? Different strategies result in different matrices but the central idea is the same. If we go back to the concept of a high scoring segment pair, theory tells us that the alignment (ungapped) given by such a segment is governed by a limiting distribution such that ¸sij qij = pipje where: ² s is the subsitution matrix used ² qij is the probability of observing character i aligned with character j ² pi is the probability of occurrence of character i Therefore, 1 qij sij = ln ¸ pipj This formula for sij suggests a way to constrcut the matrix s.
    [Show full text]
  • B.Sc. (Hons.) Biotech BIOT 3013 Unit-5 Satarudra P Singh
    B.Sc. (Hons.) Biotechnology Core Course 13: Basics of Bioinformatics and Biostatistics (BIOT 3013 ) Unit 5: Sequence Alignment and database searching Dr. Satarudra Prakash Singh Department of Biotechnology Mahatma Gandhi Central University, Motihari Challenges in bioinformatics 1. Obtain the genome of an organism. 2. Identify and annotate genes. 3. Find the sequences, three dimensional structures, and functions of proteins. 4. Find sequences of proteins that have desired three dimensional structures. 5. Compare DNA sequences and proteins sequences for similarity. 6. Study the evolution of sequences and species. Sequence alignments lie at the heart of all bioinformatics Definition of Sequence Alignment • Sequence alignment is the procedure of comparing two or more sequences by searching for a series of individual characters or character patterns that are in the same order in the sequences. LGPSSKQTGKGS - SRIWDN Global Alignment LN – ITKSAGKGAIMRLFDA --------TGKG --------- Local Alignment --------AGKG --------- • In global alignment, an attempt is made to align the entire sequences, as many characters as possible. • In local alignment, stretches of sequence with the highest density of matches are given the highest priority, thus generating one or more islands of matches in the aligned sequences. • Eg: problem of locating the famous TATAAT - box (a bacterial promoter) in a piece of DNA. Method for pairwise sequence Alignment: Dynamic Programming • Global Alignment: Needleman- Wunsch Algorithm • Local Alignment: Smith-Waterman Algorithm Needleman & Wunsch algorithm : Global alignment • There are three major phases: 1. initialization 2. Fill 3. Trace back. • Initialization assign values for the first row and column. • The score of each cell is set to the gap score multiplied by the distance from the origin.
    [Show full text]
  • Parameter Advising for Multiple Sequence Alignment
    PARAMETER ADVISING FOR MULTIPLE SEQUENCE ALIGNMENT by Daniel Frank DeBlasio Copyright c Daniel Frank DeBlasio 2016 A Dissertation Submitted to the Faculty of the DEPARTMENT OF COMPUTER SCIENCE In Partial Fulfillment of the Requirements For the Degree of DOCTOR OF PHILOSOPHY In the Graduate College THE UNIVERSITY OF ARIZONA 2016 2 THE UNIVERSITY OF ARIZONA GRADUATE COLLEGE As members of the Dissertation Committee, we certify that we have read the disser- tation prepared by Daniel Frank DeBlasio, entitled Parameter Advising for Multiple Sequence Alignment and recommend that it be accepted as fulfilling the dissertation requirement for the Degree of Doctor of Philosophy. Date: 15 April 2016 John Kececioglu Date: 15 April 2016 Alon Efrat Date: 15 April 2016 Stephen Kobourov Date: 15 April 2016 Mike Sanderson Final approval and acceptance of this dissertation is contingent upon the candidate's submission of the final copies of the dissertation to the Graduate College. I hereby certify that I have read this dissertation prepared under my direction and recommend that it be accepted as fulfilling the dissertation requirement. Date: 15 April 2016 Dissertation Director: John Kececioglu 3 STATEMENT BY AUTHOR This dissertation has been submitted in partial fulfillment of requirements for an advanced degree at the University of Arizona and is deposited in the University Library to be made available to borrowers under rules of the Library. Brief quotations from this dissertation are allowable without special permission, pro- vided that accurate acknowledgment of the source is made. Requests for permission for extended quotation from or reproduction of this manuscript in whole or in part may be granted by the copyright holder.
    [Show full text]
  • Pairwise Statistical Significance of Local Sequence Alignment Using Sequence-Specific and Position-Specific Substitution Matrices
    194 IEEE/ACM TRANSACTIONS ON COMPUTATIONAL BIOLOGY AND BIOINFORMATICS, VOL. 8, NO. 1, JANUARY/FEBRUARY 2011 Pairwise Statistical Significance of Local Sequence Alignment Using Sequence-Specific and Position-Specific Substitution Matrices Ankit Agrawal and Xiaoqiu Huang Abstract—Pairwise sequence alignment is a central problem in bioinformatics, which forms the basis of various other applications. Two related sequences are expected to have a high alignment score, but relatedness is usually judged by statistical significance rather than by alignment score. Recently, it was shown that pairwise statistical significance gives promising results as an alternative to database statistical significance for getting individual significance estimates of pairwise alignment scores. The improvement was mainly attributed to making the statistical significance estimation process more sequence-specific and database-independent. In this paper, we use sequence-specific and position-specific substitution matrices to derive the estimates of pairwise statistical significance, which is expected to use more sequence-specific information in estimating pairwise statistical significance. Experiments on a benchmark database with sequence-specific substitution matrices at different levels of sequence-specific contribution were conducted, and results confirm that using sequence-specific substitution matrices for estimating pairwise statistical significance is significantly better than using a standard matrix like BLOSUM62, and than database statistical significance estimates
    [Show full text]
  • Deriving Amino Acid Exchange Matrices (II) and Multiple Sequence Alignment (I) Summarysummary Dayhoff’Sdayhoff’S PAMPAM--Matricesmatrices
    IntroductionIntroduction toto bioinformaticsbioinformatics lecturelecture 88 Deriving amino acid exchange matrices (II) and Multiple sequence alignment (I) SummarySummary Dayhoff’sDayhoff’s PAMPAM--matricesmatrices Derived from global alignments of closely related sequences. Matrices for greater evolutionary distances are extrapolated from those for lesser ones. The number with the matrix (PAM40, PAM100) refers to the evolutionary distance; greater numbers are greater distances. Several later groups have attempted to extend Dayhoff's methodology or re-apply her analysis using later databases with more examples. Extensions of Dayhoff’s methodology: > Jones, Thornton and coworkers used the same methodology as Dayhoff but with modern databases (CABIOS 8:275). > Gonnett and coworkers (Science 256:1443) used a slightly different (but theoretically equivalent) methodology. > Henikoff & Henikoff (Proteins 17:49) compared these two newer versions of the PAM matrices with Dayhoff's originals. TheThe BLOSUMBLOSUM matricesmatrices ((BLOcksBLOcks SUbstitutionSUbstitution Matrix)Matrix) The BLOSUM series of matrices were created by Steve Henikoff and colleagues (PNAS 89:10915). Derived from local, un-gapped alignments of distantly related sequences. All matrices are directly calculated; no extrapolations are used. Again: the observed frequency of each pair is compared to the expected frequency (which is essentially the product of the frequencies of each residue in the dataset). Then: Log-odds matrix. TheThe BlocksBlocks DatabaseDatabase The Blocks Database contains multiple alignments of conserved regions in protein families. Blocks are multiply aligned un-gapped segments corresponding to the most highly conserved regions of proteins. The blocks for the BLOCKS database are made automatically by looking for the most highly conserved regions in groups of proteins represented in the PROSITE database.
    [Show full text]
  • Pairwise Sequence Alignment Algorithm by a New Measure Based
    Hara et al. BMC Bioinformatics 2010, 11:235 http://www.biomedcentral.com/1471-2105/11/235 SOFTWARE Open Access MTRAP: Pairwise sequence alignment algorithm by a new measure based on transition probability between two consecutive pairs of residues Toshihide Hara*, Keiko Sato, Masanori Ohya Abstract Background: Sequence alignment is one of the most important techniques to analyze biological systems. It is also true that the alignment is not complete and we have to develop it to look for more accurate method. In particular, an alignment for homologous sequences with low sequence similarity is not in satisfactory level. Usual methods for aligning protein sequences in recent years use a measure empirically determined. As an example, a measure is usually defined by a combination of two quantities (1) and (2) below: (1) the sum of substitutions between two residue segments, (2) the sum of gap penalties in insertion/deletion region. Such a measure is determined on the assumption that there is no an intersite correlation on the sequences. In this paper, we improve the alignment by taking the correlation of consecutive residues. Results: We introduced a new method of alignment, called MTRAP by introducing a metric defined on compound systems of two sequences. In the benchmark tests by PREFAB 4.0 and HOMSTRAD, our pairwise alignment method gives higher accuracy than other methods such as ClustalW2, TCoffee, MAFFT. Especially for the sequences with sequence identity less than 15%, our method improves the alignment accuracy significantly. Moreover, we also showed that our algorithm works well together with a consistency-based progressive multiple alignment by modifying the TCoffee to use our measure.
    [Show full text]
  • Scoring Matrices for Sequence Comparisons
    Scoring Matrices for Sequence Comparisons DEKM book Notes from Dr. Bino John and Dr. Takis Benos 1 Why compare sequences? • Given a new sequence, infer its funcHon based on similarity to another sequence • Find important molecular regions – conserved across species 2 Sequence -> Structure -> FuncHon MALRAK… SEQUENCE ? FUNCTION Cytochrome protein STRUCTURE 3 Important molecular regions conserved across species Human (C11A_HUMAN; P05108) vs. pig (C11A_PIG; P10612) Query: 1 MLAKGLPPRSVLVKGYQTFLSAPREGLGRLRVPTGEGAGISTRSPRPFNEIPSPGDNGWL 60 MLA+GL RSVLVKG Q FLSAPRE G RV TGEGA IST++PRPF+EIPSPGDNGW+ Sbjct: 1 MLARGLALRSVLVKGCQPFLSAPRECPGHPRVGTGEGACISTKTPRPFSEIPSPGDNGWI 60 Query: 61 NLYHFWRETGTHKVHLHHVQNFQKYGPIYREKLGNVESVYVIDPEDVALLFKSEGPNPER 120 NLY FW+E GT K+H HHVQNFQKYGPIYREKLGN+ESVY+IDPEDVALLFK EGPNPER Sbjct: 61 NLYRFWKEKGTQKIHYHHVQNFQKYGPIYREKLGNLESVYIIDPEDVALLFKFEGPNPER 120 Query: 121 FLIPPWVAYHQYYQRPIGVLLKKSAAWKKDRVALNQEVMAPEATKNFLPLLDAVSRDFVS 180 + IPPWVAYHQ+YQ+P+GVLLKKS AWKKDR+ LN EVMAPEA KNF+PLLD VS+DFV Sbjct: 121 YNIPPWVAYHQHYQKPVGVLLKKSGAWKKDRLVLNTEVMAPEAIKNFIPLLDTVSQDFVG 180 Query: 181 VLHRRIKKAGSGNYSGDISDDLFRFAFESITNVIFGERQGMLEEVVNPEAQRFIDAIYQM 240 VLHRRIK+ GSG +SGDI +DLFRFAFESITNVIFGER GMLEE+V+PEAQ+FIDA+YQM Sbjct: 181 VLHRRIKQQGSGKFSGDIREDLFRFAFESITNVIFGERLGMLEEIVDPEAQKFIDAVYQM 240 Query: 241 FHTSVPMLNLPPDLFRLFRTKTWKDHVAAWDVIFSKADIYTQNFYWELRQKGSVHHDYRG 300 FHTSVPMLNLPPDLFRLFRTKTW+DHVAAWD IF+KA+ YTQNFYW+LR+K ++Y G Sbjct: 241 FHTSVPMLNLPPDLFRLFRTKTWRDHVAAWDTIFNKAEKYTQNFYWDLRRKRE-FNNYPG 299 Query: 301 MLYRLLGDSKMSFEDIKANVTEMLAGGVDTTSMTLQWHLYEMARNLKVQDMLRAEVLAAR
    [Show full text]
  • Rotamer-Specific Statistical Potentials for Protein Structure Modeling
    Rotamer-specific statistical potentials for protein structure modeling by Jungkap Park A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy (Mechanical Engineering) in the University of Michigan 2013 Doctoral Committee: Professor Kazuhiro Saitou, Chair Associate Professor Angela Violi Assistant Professor Matthew Young Associate Professor Yang Zhang © 2013 Jungkap Park All Rights Reserved Acknowledgements First and foremost, I would like to thank my advisor, Kazuhiro Saitou, for his gentle guidance, great inspiration, and financial support throughout my graduate study. Whenever I got lost in my research or frustrated with unexpected difficulties, he was always patient and understanding. He gave me much freedom to explore diverse research areas and to develop myself independently. I sincerely thank my dissertation committee members, Yang Zhang, Angela Violi and Matthew Young for their time, advice, and patience through the doctoral program. I wish to express my thanks to Naesung Lyu, who first introduced me my advisor, Kazu and helped me to start smoothly my graduate study in the lab. I have been lucky to great lab members, Karim Hamza, Mohammed Shalaby, Jihun Kim and Jean Chu. I have had the opportunity to work with great collaborators. Gus Rosania and Ye Li helped me to work on ChemReader project. Although it’s not directly involved in my thesis, it helped me a lot to build research insight and skills. I have been very lucky to meet great people in Michigan. I thanks to Jonghwa Yoon, Janghee Jeong, Seungjea Lee, Seunghwan Lee, Jeongseok Kim, Dongsuk Kum, Jonggirl Ok, Joosup Lim, Donghoon Song, Minjang Jin, Kyung-eun Lee, Youngki Kim, Youjin Choi, Mingoo Seok, Kyungjoon Lee, JaesunSeo, Seoungchul Yang, InhaPaick, Minjoong Kim, Jinyoung Kim, ii Sanghun Lee, Soohyung Park, Nayoung Park, Myoungdo Chung and Hyoncheol Kim.
    [Show full text]
  • Multiple Sequence Alignment
    Bioinformatics Algorithms Multiple Sequence Alignment David Hoksza http://siret.ms.mff.cuni.cz/hoksza Outline • Motivation • Algorithms • Scoring functions • exhaustive • multidimensional dynamic programming • heuristics • progressive alignment • iterative alignment/refinement • block(local)-based alignment Multiple sequence alignment (MSA) • Goal of MSA is to find “optimal” mapping of a set of sequences • Homologous residues (originating in the same position in a common ancestor) among a set of sequences are aligned together in columns • Usually employs multiple pairwise alignment (PA) computations to reveal the evolutionarily equivalent positions across all sequences Motivation • Distant homologues • faint similarity can become apparent when present in many sequences • motifs might not be apparent from pairwise alignment only • Detection of key functional residues • amino acids critical for function tend to be conserved during the evolution and therefore can be revealed by inspecting sequences within given family • Prediction of secondary/tertiary structure • Inferring evolutionary history 4 Representation of MSA • Column-based representation • Profile representation (position specific scoring matrix) • Sequence logo Manual MSA • High quality MSA can be carried out automatic MSA algorithms by hand using expert knowledge • specific columns • BAliBASE • highly conserved residues • https://lbgi.fr/balibase/ • buried hydrophobic residues • PROSITE • secondary structure (especially in RNA • http://prosite.expasy.org/ alignment) • Pfam • expected
    [Show full text]
  • Practical Considerations of Working with Sequencing Data File Types
    Practical considerations of working with sequencing data File Types • Fastq ->aligner -> reference(genome) coordinates • Coordinate files • SAM/BAM – most complete, contains all of the info in fastq and more! • Bedgraph – read density along the genome • Bed file –Read density reported in large continuous intervals • Genes/transcript and transcript structure • Transcription factor binding regions • If someone does a sequencing experiment usually one of these is available and deposited in a public database SAM/BAM Viewing genome coordinate files with IGV • Integrated Genome Browser • Cross-platform application • Knows about common genomes • Genome version is important! Different assemblies • Genome coordinates different between genome assemblies • Differences accumulate over chromosome length • You have to know which assembly was used • Sequencing files are non- randomly distributed relative to genes • RNAseq—should align with exons • TF binding sites—biased towards promoter regions Converting coordinates • UCSC liftOver -- converts genome coordinates • Convert from one assembly to another • Cross organism conversion • Mammals/vertebrates Sequence Alignment To do: • Global alignment • Local alignment • Scoring • Gaps • Scoring matrices • Database Search • Statistical Significance • Multiple Sequence alignment Why compare sequences • Given a new sequence, infer its function based on similarity to another sequence • Find important molecular regions – conserved across species • Determine 3d structure with homology modeling • Homologs-sequences that descended from a common ancestral sequence • Orthologs- separated by speciation • Paralogs separated by duplication in a single genome • Basic unit of protein homology is a sufficient functional unit—typically much smaller than a whole gene DNA vs Protein alignments • Protein coding • Typically compared in amino acid space • Amino acid change slower than nucleotides • Some nucleotides can change without any change to a.a.
    [Show full text]