S-BLOSUM: Classification of 2D Shapes with Biological Sequence

Total Page:16

File Type:pdf, Size:1020Kb

S-BLOSUM: Classification of 2D Shapes with Biological Sequence 2014 22nd International Conference on Pattern Recognition S-BLOSUM: classification of 2D shapes with biological sequence alignment Pietro Lovato∗, Alessio Milanese†, Cesare Centomo†, Alejandro Giorgetti†, Manuele Bicego∗ ∗Department of Computer Science, University of Verona †Department of Biotechnology, University of Verona Strada le Grazie 15, 37134 Verona (ITALY) Corresponding author: Pietro Lovato; Email: [email protected] Abstract—Recent works investigated the possibility to design An alternative, complementary way of interaction may be solutions for pattern recognition problems by exploiting the huge to translate advanced bioinformatics solutions into ideas and amount of work done in bioinformatics. If the pattern recognition methodologies useful to solve a pattern recognition task1.For problem is cast in biological terms, then a huge range of algo- rithms, exploitable for classification, detection, visualization, etc. example, sequence analysis is a problem encountered every can be effectively borrowed. In this paper, we exploit biological day in the life sciences: there has been a vast amount of tools sequence alignment tools to classify 2D shapes, tailoring the and solutions, improved in more than 40 years of research, biological parameters of these tools to account for the different developed to analyse biological sequences (sequence align- semantic of the 2D shape scenario. In particular, we propose ment, motif discovery, phylogenesis are just few examples). a novel substitution matrix, which is the crucial parameter determining the sequence alignment solution. The new matrix, Thus, encoding a 2D contour as a string (like the simple called S-BLOSUM, learns the rates of matches/mismatches in chaincode descriptor [11]), and mapping it into a biological conserved portions of shapes belonging to the same category, sequence opened to the possibility of exploiting a wide class and incorporates prior knowledge on the chosen representation of techniques coming from the biological sequence alignment for the 2D shape. On one hand, the experimental evaluation community, where specialized algorithms for string matching, showed that the S-BLOSUM provides a significant improvement over the biological counterpart (BLOSUM); on the other hand, visualization, and interpretation have been developed. classification results prove that our approach is competitive with Indeed, results obtained in [7], [8] proved the suitability respect to the state of the art. of the approach, even in its simplest scheme – employing the biological tools “as are”. Clearly, there is room for many I. INTRODUCTION improvements and refinements. In this sense, we can observe 2D shape analysis is an important and still open research that parameters in sequence alignment techniques are finely area in computer vision, often representing the basis for tuned to take into account the biological nature of the input recognition of 3D real-world objects. The goal in a clas- sequences so that evolutionary events, such as mutations or sification / recognition task is to assign a category to an rearrangements can be clearly expressed. If we use biological unknown 2D shape on the basis of a set of classifiers, learned tools as they are we do not take into account the fact that from a training set which contains examples of the different symbols in the shape alphabet (for example, chaincodes) have categories. Several approaches have been proposed in the past a very different semantics than aminoacids in nature. (see for example the reviews [1], [2]), and many of them are This paper is aimed at investigating this aspect, trying based on the analysis of the boundary: very often, the 2D shape to understand to which extent this is crucial. In particular, is encoded by its contour, which proved to be an effective and more than exploiting biological alignment tools to classify perceptually reasonable choice in many applications. Different 2D shapes, we also tune the biological parameters of these techniques exhibit different characteristics: robustness to noise tools to account for the change in the applicative scenario. We and occlusions, invariance to translation, rotation, and scale, start from the observation that biological knowledge (in the computational requirements, and accuracy (see [3], [4], [5], alignment process) is encoded in the form of a substitution [6] and references therein). matrix (the most famous one called BLOSUM [12]): an Recently, an alternative class of approaches have been entry (i, j) in such matrix indicates the score to assign for a proposed by some of the authors: in particular, we presented match/mismatch (the lower, the more penalized it is) between a parallelism between the 2D shape recognition problem and symbols i and j, and this models the fact that in nature the biological sequence alignment [7], [8], exploring the idea substitutions between aminoacids are not all equally likely. of borrowing bioinformatics tools to solve pattern recognition In this paper, we propose a novel substitution matrix, which problems such as the shape classification one. The main we will refer to as Shape BLOSUM (S-BLOSUM), learned observation was that, in the past, the huge and profitable interaction between pattern recognition and biology has been 1The same alternative way of thinking was also pioneered in the Video Genome Project [10] – see http://v-nome.org/about.html – where internet mainly unidirectional, namely devoted to study how to apply videos were encoded as “video DNA sequences” and analysed with phy- PR tools, algorithms and ideas to analyse biological data [9]. logenetic related tools. 1051-4651/14 $31.00 © 2014 IEEE 2335 DOI 10.1109/ICPR.2014.405 sequences, in order to maximize their point-wise similarity. A huge amount of algorithms for sequence alignment exist in the literature [13], [14], [15], [16], and they can be classified in several different categories. The main taxonomy divides the approaches in three categories: global alignment methods, which are aimed at finding the best overall alignment between two sequences; local alignments, which detect related seg- ments in a pair of sequences, and multiple alignments, which are aimed at simultaneously align more than two sequences. All of these techniques heavily rely on a fundamental parameter, called the substitution matrix, which assigns a score for matches/mismatches based on the rate at which one character in a sequence is likely to mutate into another one (the higher, the more likely it is). Another important parameter, the gap penalties, is specified by a pair of values representing the Fig. 1. A substitution matrix can be learned by observing the matches/mismatches frequencies that occur in chaincode strings composing cost for inserting a gap and extending an existing one. a category of shapes. In the example, the symbol 0 is highly conserved, so it A fundamental issue is therefore how to choose and design will have a strong negative penalty. On the other hand, substitutions between properly the substitution matrix B. Intuitively, B should have 3 and 4 happen very often, resulting in a low penalty value for the mismatch between the two. the highest values on the diagonal: if two symbols match, a high score should be assigned. For mismatches, B should from our shape data in a similar fashion the BLOSUM is reflect the fact that there are some that are highly improb- built from biological data [12]. In this way, each element able, due for example to physical or chemical properties models the variations that are likely to occur within shapes of aminoacids. In the protein domain, the most employed of the same category, due for example to local deformations substitution matrix is the one called BLOSUM [12], being the or random noise (a graphical explanation is depicted in Fig. 1). default choice of many bioinformatics tools available on the Furthermore, we introduced some a priori assumptions on the web. Note that many alternatives exist, the oldest one being chaincode representation, leading to a matrix S-BLOSUMfull the PAM [17]. which accounts for prior knowledge and is also driven by the data we actually observe; as expected, combining these aspects III. THE PROPOSED APPROACH proves to be the best choice in terms of classification accuracy. Our proposal is to build a substitution matrix able to deal Once a proper matrix is chosen, it can be plugged into with our peculiar scenario. We assume that a shape is encoded any biological sequence alignment program, which gives for with the 8-directional chaincode, thus strings are defined over any pair of sequences an alignment score, which reflects an alphabet of 8 symbols. Note however that our approach “how well” those sequences are aligned under the substitution can be employed with any descriptor that is able to map a 2D matrix. Such quantity is the similarity measure exploited for shape into a string. classification in a nearest-neighbor setting. To quantitatively test the proposed approach, we performed experiments on A. S-BLOSUM construction three benchmark shapes datasets, demonstrating the suitability In the following, we explain how the S-BLOSUM is built: of the proposed scheme: results showed that our matrices starting from the description of the BLOSUM matrix (found improve the results obtained with the biological BLOSUM, in [12]), we will detail in every step how we account for the and are also very competitive with recent state-of-the art change in representation. techniques we evaluated for comparison. Block extraction: The starting concept in building a II. BACKGROUND: BLOSUM MATRICES AND SEQUENCE BLOSUM is that of a block of related sequences. In biological ALIGNMENT terms, related sequences are the ones which belong to the same Understanding and modeling living cell behavior is strongly evolutionary family – namely, they share the same biological based on the analysis of sequences, both nucleotide sequences function. Blocks then are ungapped, highly similar portions of – i.e. strings made with the 4 symbols of DNA (A, T, C, and G) sequences, which have been previously aligned and extracted – and aminoacid sequences, i.e.
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]