Classifying Peroxiredoxin Subgroups and Identifying

Total Page:16

File Type:pdf, Size:1020Kb

Classifying Peroxiredoxin Subgroups and Identifying CLASSIFYING PEROXIREDOXIN SUBGROUPS AND IDENTIFYING DISCRIMINATING MOTIFS VIA MACHINE LEARNING BY JIAJIE XIAO A Thesis Submitted to the Graduate Faculty of WAKE FOREST UNIVERSITY GRADUATE SCHOOL OF ARTS AND SCIENCES in Partial Fulfillment of the Requirements for the Degree of MASTER OF SCIENCE Computer Science May, 2018 Winston-Salem, North Carolina Approved By: William Turkett, Jr., Ph.D., Advisor David John, Ph.D., Chair Grey Ballard, Ph.D. James Pease, Ph.D. Dedication This work is dedicated to my parents, Mingfu Xiao and Lizhu Xu, my sister, Wanling Xiao. Because of their hard work, I get to be exactly who I want to be. ii Acknowledgments First, I would like to show my gratitude towards the Center for Molecular Communication and Signaling for supporting me as a Research Fellow for the fall semester in 2017-2018 academic year. The extra time and focus has helped me expand my research project in directions I would not have been able to explore otherwise. I would also like to thank the Department of Computer Science at Wake Forest University. I appreciate all of the resources and support that the department has provided me with in order to complete my thesis. I would also like to thank the professors who have been very helpful and welcoming during coursework, seminars, and hallway passings. I want to thank Dr. John, Dr. Ballard, and Dr. Pease for being on my committee. I appreciate your input and the time you are taking to help me complete my thesis. I want to thank Dr. Poole for the interactions in the Prx subgroup classification project. I also want to acknowledge Dr. Colyer and Dr. Bonin for giving me permissions on the use of the thrombin aptamer sequencing data. In addition, I want to thank Dr. Salsbury for his support on my graduate study and career development in general. Most importantly, I would like to thank Dr. Turkett. Taking your class and doing research with you was the most memorable and pleasant experience during my time at Wake. Your welcoming, friendly, and encouraging attitude inspire me how to get along with people and face difficulties. Thank you for all your help and support. Lastly, I would like to thank my family. I would like to thank for their emotional support and encouraging discussion on the prospective of this project. Thank you for being there for me. iii Table of Contents Acknowledgments iii List of Figures viii List of Tables xii List of Abbreviations xiii Abstract xiv Chapter 1 Decoding biological sequences through bioinformatics and ma- chine learning1 1.1 Biological introduction............................1 1.2 Bioinformatics and machine learning introduction.............3 1.3 Contribution of this work to bioinformatics and machine learning....6 References......................................7 Chapter 2 Sequence-based classification and sequence motifs in protein and nucleic acids 13 2.1 Sequence-based classifications........................ 13 2.1.1 kmer SVM............................... 15 2.2 Motif discovery................................ 17 2.2.1 Types of Motifs............................ 18 2.2.2 Motif recognition and identification................. 18 iv 2.2.3 Motif evaluation........................... 19 References...................................... 21 Chapter 3 Kmer based classifiers extract functionally relevant features to support accurate Peroxiredoxin subgroup distinction 24 3.1 Introduction.................................. 25 3.2 Materials and Methods............................ 25 3.2.1 Data acquisition............................ 25 3.2.2 Model construction.......................... 26 3.3 Results..................................... 27 3.3.1 Classifier performance........................ 27 3.3.2 Distinguishing kmers......................... 27 3.4 Discussion................................... 28 3.4.1 Classification process comparison.................. 28 3.4.2 Classification performance comparison............... 30 3.4.3 Analysis of distinguishing kmers................... 33 3.4.4 Limitations in analysis........................ 36 3.5 Conclusions.................................. 37 References...................................... 39 Chapter 4 Finding gapped and ungapped motifs using alignment-free two-round machine learning 43 4.1 Introduction.................................. 44 4.2 Materials and Methods............................ 45 4.2.1 Approach............................... 45 4.2.2 Implementations........................... 48 4.2.3 Data acquisition............................ 48 4.3 Results..................................... 49 4.3.1 Case study 1: CCAXXXGGXG................... 49 4.3.2 Case study 2: CTCCC(8X)ATT................... 50 4.3.3 Case study 3: SXPWK[AK]XP................... 50 v 4.3.4 Case study 4: Binding motifs in aptamer selection experiments.. 52 4.4 Discussion................................... 54 4.4.1 Sequence classifier comparisons................... 54 4.4.2 Limitations.............................. 55 4.4.3 Robustness of the methods...................... 55 4.5 Conclusions.................................. 56 References...................................... 58 Chapter 5 Future directions 61 5.1 Algorithm limitations and improvements.................. 61 5.2 Potential biological applications....................... 62 5.3 Other potential applications......................... 63 References...................................... 64 Curriculum Vitae 65 vi List of Figures 2.1 An example of a linear SVM. Support vectors denoted by the dark color nodes define the class margins. Parameters defining these support vectors are tuned during data training to maximize the marginal distance between instances of the two classes.......................... 16 2.2 A linear SVM classifier. Once a linear SVM is constructed, a sequence with kmer encoded features x( 0) can result in predicted functional-positive ≥ or -negative class............................... 17 3.1 For all 63 proteins in the Harper data set where all 3merSVM classi- fiers returned a negative score, the maximum score for each protein is plotted. Plus shapes indicate the scores for the 60 proteins where the 3merSVM classification matched the Harper et al. classification, while triangle shapes indicate the 3 proteins where there was a mismatch be- tween the two approaches to classification.................. 34 3.2 A Weblogo alignment of the regions +/- 5 residues centered on the 3mer FWP extracted from the sequences that all four AhpE 3mers shown in Table 3.11 occur in............................... 36 3.3 A Weblogo alignment of the regions +/- 5 residues centered on the 3mer LPF extracted from the sequences that all three Tpx 3mers shown in Table 3.12 occur in.................................. 37 3.4 A Weblogo alignment of the regions +/- 5 residues centered on the 3mer CPA extracted from the Prx1 sequences that contain the CPA 3mer... 37 vii 4.1 An example of feature extraction guided by the first-round SVM. Different kmers and their normalized feature weights are stacked according to the original sequence. Accumulated weight aW can be computed for each character accordingly. As a result, motif candidates can be extracted from the positions with hight aW ....................... 47 4.2 A complex of thrombin and aptamer. The structure is visualized using VMD 1.9.215 according to PDB 4I6Y16. The thrombin is colored in green. The aptamer is colored in yellow. Bases corresponding to GTCACCC- CAAC are highlighted by the red Licorice representation.......... 53 4.3 Accuracy comparisons of different sequence classifiers. Accuracies in 10- fold cross validations of each classifier on sequences from case study 1 are displayed as box plots. kmer-SVMs are indicated by first 9 entries. The next three entries present gkm-SVMs using l=10 and k=4,5,6. The last entry indicates the second-round SVM using the features chosen via guidance from the first-round SVM learning................. 54 viii List of Tables 1.1 Common amino acids and their side chain properties and corresponding DNA codons. Polar and nonpolar can also suggest the solubility. A polar side chain indicates hydrophilic and a nonpolar one represent hydrophobic. Acid and basic properties can also be reflected by electrical signs of \-" and \+" respectively, while electrically neutral is denoted by \N".....2 1.2 Common hierarchical structures of proteins and nucleic acids......3 1.3 Types of omics-related studies........................5 3.1 Each column represents the number of examples for a Prx subgroup avail- able in the corresponding data set. The Harper-SFLD data set represents the intersection of the Harper data set with the subgroup-annotated Perox- iredoxins available in SFLD as of December 2017. The 0.95-Harper-SFLD data set represents the representative proteins after clustering each sub- group of the Harper-SFLD data set using the CD-Hit algorithm with a 95% similarity setting............................. 26 3.2 The confusion matrix represents results from testing on the Harper data set. For a given protein, the row represents the known annotation (as per Harper et al.) and the column represents the annotation suggested by the 3merSVM classifier. The counts represent how many proteins had each pair of annotations, with large values along the diagonal, representing matching annotations, being ideal....................... 27 ix 3.3 Columns represent distinguishing 3mers for the AhpE, Prx1, and Prx5 subgroups, the percentage of corresponding subgroup active site pseudo signatures from the Harper data that each 3mer occurs in, and the loca- tion relative
Recommended publications
  • Proquest Dissertations
    Automated learning of protein involvement in pathogenesis using integrated queries Eithon Cadag A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy University of Washington 2009 Program Authorized to Offer Degree: Department of Medical Education and Biomedical Informatics UMI Number: 3394276 All rights reserved INFORMATION TO ALL USERS The quality of this reproduction is dependent upon the quality of the copy submitted. In the unlikely event that the author did not send a complete manuscript and there are missing pages, these will be noted. Also, if material had to be removed, a note will indicate the deletion. UMI Dissertation Publishing UMI 3394276 Copyright 2010 by ProQuest LLC. All rights reserved. This edition of the work is protected against unauthorized copying under Title 17, United States Code. uest ProQuest LLC 789 East Eisenhower Parkway P.O. Box 1346 Ann Arbor, Ml 48106-1346 University of Washington Graduate School This is to certify that I have examined this copy of a doctoral dissertation by Eithon Cadag and have found that it is complete and satisfactory in all respects, and that any and all revisions required by the final examining committee have been made. Chair of the Supervisory Committee: Reading Committee: (SjLt KJ. £U*t~ Peter Tgffczy-Hornoch In presenting this dissertation in partial fulfillment of the requirements for the doctoral degree at the University of Washington, I agree that the Library shall make its copies freely available for inspection. I further agree that extensive copying of this dissertation is allowable only for scholarly purposes, consistent with "fair use" as prescribed in the U.S.
    [Show full text]
  • Enhanced Representation of Natural Product Metabolism in Uniprotkb
    H OH metabolites OH Article Diverse Taxonomies for Diverse Chemistries: Enhanced Representation of Natural Product Metabolism in UniProtKB Marc Feuermann 1,* , Emmanuel Boutet 1,* , Anne Morgat 1 , Kristian B. Axelsen 1, Parit Bansal 1, Jerven Bolleman 1 , Edouard de Castro 1, Elisabeth Coudert 1, Elisabeth Gasteiger 1,Sébastien Géhant 1, Damien Lieberherr 1, Thierry Lombardot 1,†, Teresa B. Neto 1, Ivo Pedruzzi 1, Sylvain Poux 1, Monica Pozzato 1, Nicole Redaschi 1 , Alan Bridge 1 and on behalf of the UniProt Consortium 1,2,3,4,‡ 1 Swiss-Prot Group, SIB Swiss Institute of Bioinformatics, CMU, 1 Michel-Servet, CH-1211 Geneva 4, Switzerland; [email protected] (A.M.); [email protected] (K.B.A.); [email protected] (P.B.); [email protected] (J.B.); [email protected] (E.d.C.); [email protected] (E.C.); [email protected] (E.G.); [email protected] (S.G.); [email protected] (D.L.); [email protected] (T.L.); [email protected] (T.B.N.); [email protected] (I.P.); [email protected] (S.P.); [email protected] (M.P.); [email protected] (N.R.); [email protected] (A.B.); [email protected] (U.C.) 2 European Molecular Biology Laboratory, European Bioinformatics Institute (EMBL-EBI), Wellcome Trust Genome Campus, Hinxton, Cambridge CB10 1SD, UK 3 Protein Information Resource, University of Delaware, 15 Innovation Way, Suite 205, Newark, DE 19711, USA 4 Protein Information Resource, Georgetown University Medical Center, 3300 Whitehaven Street NorthWest, Suite 1200, Washington, DC 20007, USA * Correspondence: [email protected] (M.F.); [email protected] (E.B.); Tel.: +41-22-379-58-75 (M.F.); +41-22-379-49-10 (E.B.) † Current address: Centre Informatique, Division Calcul et Soutien à la Recherche, University of Lausanne, CH-1015 Lausanne, Switzerland.
    [Show full text]
  • The EMBL-European Bioinformatics Institute the Hub for Bioinformatics in Europe
    The EMBL-European Bioinformatics Institute The hub for bioinformatics in Europe Blaise T.F. Alako, PhD [email protected] www.ebi.ac.uk What is EMBL-EBI? • Part of the European Molecular Biology Laboratory • International, non-profit research institute • Europe’s hub for biological data, services and research The European Molecular Biology Laboratory Heidelberg Hamburg Hinxton, Cambridge Basic research Structural biology Bioinformatics Administration Grenoble Monterotondo, Rome EMBO EMBL staff: 1500 people Structural biology Mouse biology >60 nationalities EMBL member states Austria, Belgium, Croatia, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Israel, Italy, Luxembourg, the Netherlands, Norway, Portugal, Spain, Sweden, Switzerland and the United Kingdom Associate member state: Australia Who we are ~500 members of staff ~400 work in services & support >53 nationalities ~120 focus on basic research EMBL-EBI’s mission • Provide freely available data and bioinformatics services to all facets of the scientific community in ways that promote scientific progress • Contribute to the advancement of biology through basic investigator-driven research in bioinformatics • Provide advanced bioinformatics training to scientists at all levels, from PhD students to independent investigators • Help disseminate cutting-edge technologies to industry • Coordinate biological data provision throughout Europe Services Data and tools for molecular life science www.ebi.ac.uk/services Browse our services 9 What services do we provide? Labs around the
    [Show full text]
  • Lecture 5: Sequence Alignment – Global Alignment
    Sequence Alignment COSC 348: Computing for Bioinformatics • Sequence alignment is a way of arranging two or more sequences of characters to identify regions of similarity – b/c similarities may be a consequence of functional or Lecture 5: evolutionary relationships between these sequences. Sequence Alignment – Global Alignment • Another definition: Procedure for comparing two or more sequences by searching for a series of individual characters that Lubica Benuskova, Ph.D. are in the same order in those sequences – Pair-wise alignment: compare two sequences – Multiple sequence alignment: compare > 2 sequences http://www.cs.otago.ac.nz/cosc348/ 1 2 Similarity versus identity Sequence alignment: example • In the process of evolution, from one generation to the next, and from one species to the next, the amino acid sequences of • Task: align abcdef with somehow similar abdgf an organism's proteins are gradually altered through the action of DNA mutations. For example, the sequence: • Write second sequence below the first one – ALEIRYLRD • could mutate into the sequence: ALEINYLRD abcdef abdgf • in one generation and possibly into AQEINYQRD • Move sequences to give maximum match between them. • over a longer period of evolutionary time. – Note: a hydrophobic amino acid is more likely to stay • Show characters that match using vertical bar. hydrophobic than not, since replacing it with a hydrophilic residue could affect the folding and/or activity of the protein. 3 4 Sequence alignment: example Quantitative global alignments abcdef • We are looking for an alignment, which || – maximizes the number of base-to-base matches; abdgf – if necessary to achieve this goal, inserts gaps in either sequence (a gap means a base-to-nothing match); • In order to maximise the alignment, we insert gap between – the order of bases in each sequence must remain and in lower sequence to allow and to align b d d f preserved and abcdef – gap-to-gap matches are not allowed.
    [Show full text]
  • ISCB Ebola Award for Important Future Research on the Computational Biology of Ebola Virus
    ISCB Ebola Award for Important Future Research on the Computational Biology of Ebola Virus Journal Information Article/Issue Information Journal ID (nlm-ta): F1000Res Self URI: f1000research-4-6464.pdf Journal ID (iso-abbrev): F1000Res Date accepted: 13 January 2015 Journal ID (pmc): F1000Research Publication date (electronic): 15 January 2015 Title: F1000Research Publication date (collection): 2015 ISSN (electronic): 2046-1402 Volume: 4 Publisher: F1000Research (London, UK) Electronic Location Identifier: 12 Article Id (accession): PMC4457108 Article Id (pmcid): PMC4457108 Article Id (pmc-uid): 4457108 PubMed ID: 26097686 DOI: 10.12688/f1000research.6038.1 Funding: The author(s) declared that no grants were involved in supporting this work. Categories Subject: Editorial Categories Subject: Articles Subject: Bioinformatics Subject: Theory & Simulation Subject: Tropical & Travel-Associated Diseases Subject: Viral Infections (without HIV) Subject: Virology ISCB Ebola Award for Important Future Research on the Computational Biology of Ebola Virus v1; ref status: not peer reviewed Peter D. Karp Bonnie Berger Diane Kovats Thomas Lengauer Michal Linial Pardis Sabeti Winston Hide Burkhard Rost 1 1International Society for Computational Biology, La Jolla, CA, USA 2 2SRI International, Menlo Park, CA, USA 3 3Department of Mathematics, Massachusetts Institute of Technology, Cambridge, MA, USA 4 4Computational Biology and Applied Algorithmics, Max Planck Institute for Informatics, Saarbruecken, Germany 5 5Hebrew University & Institute of Advanced
    [Show full text]
  • Novel Bioinformatics Applications for Protein Allergology
    AND ! "#$% &'()* +% + ,-.,-/,0 + 121,..0-10- ! 3 4 33!!3 ,,,1/ !"# $% # $# &'()$ $*+,'-./ $ "Por la ciencia, como por el arte, se va al mismo sitio: a la verdad" Gregorio Marañón Madrid, 19-05-1887 - Madrid, 27-03-1960 List of Papers This thesis is based on the following papers, which are referred to in the text by their Roman numerals. I Martínez Barrio, Á., Soeria-Atmadja, D., Nister, A., Gustafsson, M.G., Hammerling, U., Bongcam-Rudloff, E. (2007) EVALLER: a web server for in silico assessment of potential protein allergenicity. Nucleic Acids Research, 35(Web Server issue):W694-700. II Martínez Barrio, Á.∗, Lagercrantz, E.∗, Sperber, G.O., Blomberg, J., Bongcam-Rudloff, E. (2009) Annotation and visualization of endogenous retroviral sequences using the Distributed Annotation System (DAS) and eBioX. BMC Bioinformatics, 10(Suppl 6):S18. III Martínez Barrio, Á., Xu, F., Lagercrantz, E., Bongcam-Rudloff, E. (2009) GeneFinder: In silico positional cloning of trait genes. Manuscript. IV Martínez Barrio, Á., Ekerljung, M., Jern, P., Benachenhou, F., Sperber,
    [Show full text]
  • Tunca Doğan , Alex Bateman , Maria J. Martin Your Choice
    (—THIS SIDEBAR DOES NOT PRINT—) UniProt Domain Architecture Alignment: A New Approach for Protein Similarity QUICK START (cont.) DESIGN GUIDE Search using InterPro Domain Annotation How to change the template color theme This PowerPoint 2007 template produces a 44”x44” You can easily change the color theme of your poster by going to presentation poster. You can use it to create your research 1 1 1 the DESIGN menu, click on COLORS, and choose the color theme of poster and save valuable time placing titles, subtitles, text, Tunca Doğan , Alex Bateman , Maria J. Martin your choice. You can also create your own color theme. and graphics. European Molecular Biology Laboratory, European Bioinformatics Institute (EMBL-EBI), We provide a series of online tutorials that will guide you Wellcome Trust Genome Campus, Hinxton, Cambridge CB10 1SD, UK through the poster design process and answer your poster Correspondence: [email protected] production questions. To view our template tutorials, go online to PosterPresentations.com and click on HELP DESK. ABSTRACT METHODOLOGY RESULTS & DISCUSSION When you are ready to print your poster, go online to InterPro Domains, DAs and DA Alignment PosterPresentations.com Motivation: Similarity based methods have been widely used in order to Generation of the Domain Architectures: You can also manually change the color of your background by going to VIEW > SLIDE MASTER. After you finish working on the master be infer the properties of genes and gene products containing little or no 1) Collect the hits for each protein from InterPro. Domain annotation coverage Overlap domain hits problem in Need assistance? Call us at 1.510.649.3001 difference b/w domain databases: the InterPro database: sure to go to VIEW > NORMAL to continue working on your poster.
    [Show full text]
  • Evolution and Function of Drososphila Melanogaster Cis-Regulatory Sequences
    Evolution and Function of Drososphila melanogaster cis-regulatory Sequences By Aaron Hardin A dissertation submitted in partial satisfaction of the requirements for the degree of Doctor of Philosophy in Molecular and Cell Biology in the Graduate Division of the University of California, Berkeley Committee in charge: Professor Michael Eisen, Chair Professor Doris Bachtrog Professor Gary Karpen Professor Lior Pachter Fall 2013 Evolution and Function of Drososphila melanogaster cis-regulatory Sequences This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License 2013 by Aaron Hardin 1 Abstract Evolution and Function of Drososphila melanogaster cis-regulatory Sequences by Aaron Hardin Doctor of Philosophy in Molecular and Cell Biology University of California, Berkeley Professor Michael Eisen, Chair In this work, I describe my doctoral work studying the regulation of transcription with both computational and experimental methods on the natural genetic variation in a population. This works integrates an investigation of the consequences of polymorphisms at three stages of gene regulation in the developing fly embryo: the diversity at cis-regulatory modules, the integration of transcription factor binding into changes in chromatin state and the effects of these inputs on the final phenotype of embryonic gene expression. i I dedicate this dissertation to Mela Hardin who has been here for me at all times, even when we were apart. ii Contents List of Figures iv List of Tables vi Acknowledgments vii 1 Introduction1 2 Within Species Diversity in cis-Regulatory Modules6 2.1 Introduction....................................6 2.2 Results.......................................8 2.2.1 Genome wide diversity in transcription factor binding sites......8 2.2.2 Genome wide purifying selection on cis-regulatory modules......9 2.3 Discussion.....................................9 2.4 Methods for finding polymorphisms......................
    [Show full text]
  • Lie Therory and Hermite Polynomials
    International Journal For Research In Advanced Computer Science And Engineering ISSN: 2208-2107 A Computational Method for Sequence analyzing Rekardo Fosalli, Teriso Joloobi School of Computer Science, University of De Cyprus, Cyprus Abstract: To study how normal cellular activities are altered in different disease states, the biological data must be combined to form a comprehensive picture of these activities. Therefore, the field of bioinformatics has evolved such that the most pressing task now involves the analysis and interpretation of various types of data. This includes nucleotide and amino acid sequences, protein domains, and protein structures. Common uses of bioinformatics include the identification of candidate genes and nucleotides (SNPs). Often, such identification is made with the aim of better understanding the genetic basis of disease, unique adaptations, desirable properties (esp. in agricultural species), or differences between populations. In a less formal way, bioinformatics also tries to understand the organisational principles within nucleic acid and protein sequences. Keywords: Clustering, RNA sequences, RNA-Seq, Data Mining, Bioinformatics, Graph Mining. 1. INTRODUCTION Bioinformatics has become an important part of many areas of biology. In experimental molecular biology, bioinformatics techniques such as image and signal processing allow extraction of useful results from large amounts of raw data. In the field of genetics and genomics, it aids in sequencing and annotating genomes and their observed mutations. It plays a role in the text mining of biological literature and the development of biological and gene ontologies to organize and query biological data. It also plays a role in the analysis of gene and protein expression and regulation.
    [Show full text]
  • Sophie Dumont
    Sophie Dumont University of California, San Francisco 513 Parnassus Ave, HSW-613, San Francisco, CA 94143-0512, USA Office: (415) 502-1229 / Cell: (510) 229-9846 [email protected] ; http://dumontlab.ucsf.edu/ EDUCATION 9/2000-12/2005 Ph.D., Biophysics, University of California, Berkeley, CA 10/1999-8/2000 Candidate for D.Phil., Theoretical Physics, University of Oxford, UK 9/1995-6/1999 B.A., Physics, magna cum laude, Princeton University, Princeton, NJ RESEARCH POSITIONS & TRAINING 7/2012-present Assistant Professor, University of California, San Francisco Dept of Cell & Tissue Biology and Dept of Cellular & Molecular Pharmacology Member, QB3 California Institute for Quantitative Biosciences Member, NSF Center for Cellular Construction Affiliate Member, UCSF Cancer Center Graduate program member: Bioengineering, Biomedical Sciences, Biophysics, Tetrad 7/2006-5/2012 Postdoctoral Fellow, Harvard Medical School Mentor: Prof. Timothy Mitchison (Systems Biology) 7/2006-6/2009 Junior Fellow, Harvard Society of Fellows 9/2000-12/2005 Graduate Student, University of California, Berkeley Advisor: Prof. Carlos Bustamante (Physics and Molecular & Cell Biology) 10/1999-8/2000 Graduate Student, University of Oxford Advisor: Prof. Douglas Abraham (Theoretical Physics) 6/1997-5/1999 Undergraduate Student, Princeton University Advisor: Prof. Stanislas Leibler (Physics) AWARDS 2016-2021 NSF CAREER Award 2016 Margaret Oakley Dayhoff Award of the Biophysical Society 2015-2020 NIH New Innovator Award (DP2) 2013-2018 Rita Allen Foundation and Milton
    [Show full text]
  • BMC Bioinformatics Biomed Central
    BMC Bioinformatics BioMed Central Proceedings Open Access NIPS workshop on New Problems and Methods in Computational Biology Gal Chechik*1, Christina Leslie2, William Stafford Noble3, Gunnar Rätsch4, Quaid Morris5 and Koji Tsuda6 Address: 1Computer Science Department, Stanford University, 353 Serra Mall, Stanford University, Stanford, CA 94305, USA, 2Computational Biology Program, Memorial Sloan-Kettering Cancer Center, 1275 York Ave, Box 460, New York, NY 10065, USA, 3Department of Genome Sciences, University of Washington, 1705 NE Pacific St, Seattle, WA 98109, USA, 4Friedrich Miescher Laboratory of the Max Planck Society, Spemannstr. 39, 72076 Tübingen, Germany, 5Terrence Donnelley Centre for Cellular and Biomolecular Research, University of Toronto, 160 College Street, Toronto, Ontario, M5S 3E1, Canada and 6Max Planck Institute for Biological Cybernetics, Spemannstr. 38, 72076 Tübingen, Germany Email: Gal Chechik* - [email protected]; Christina Leslie - [email protected]; William Stafford Noble - [email protected]; Gunnar Rätsch - [email protected]; Quaid Morris - [email protected]; Koji Tsuda - [email protected] * Corresponding author from NIPS workshop on New Problems and Methods in Computational Biology Whistler, Canada. 8 December 2006 Published: 21 December 2007 BMC Bioinformatics 2007, 8(Suppl 10):S1 doi:10.1186/1471-2105-8-S10-S1 <supplement> <title> <p>Neural Information Processing Systems (NIPS) workshop on New Problems and Methods in Computational Biology</p> </title> <editor>Gal Chechik, Christina Leslie, William Stafford Noble, Gunnar Rätsch, Quiad Morris and Koji Tsuda</editor> <note>Proceedings</note> <url>http://www.biomedcentral.com/content/pdf/1471-2105-8-S10-info.pdf</url> </supplement> This article is available from: http://www.biomedcentral.com/1471-2105/8/S10/S1 © 2007 Chechik et al; licensee BioMed Central Ltd.
    [Show full text]
  • Information-Theoretic Bounds of Evolutionary Processes Modeled As a Protein Communication System
    INFORMATION-THEORETIC BOUNDS OF EVOLUTIONARY PROCESSES MODELED AS A PROTEIN COMMUNICATION SYSTEM Liuling Gong, Nidhal Bouaynaya∗ and Dan Schonfeld University of Illinois at Chicago, Dept. of Electrical and Computer Engineering, ABSTRACT can be investigated in the context of engineering communica- In this paper, we investigate the information theoretic bounds tion codes. In particular, it is legitimate to ask at what rate of the channel of evolution introduced in [1]. The channel of can the genomic information be transmitted. And what is the evolution is modeled as the iteration of protein communica- average distortion between the transmitted message and the tion channels over time, where the transmitted messages are received message at this rate? Shannon’s channel capacity protein sequences and the encoded message is the DNA. We theorem states that, by properly encoding the source, a com- compute the capacity and the rate-distortion functions of the munication system can transmit information at a rate that is protein communication system for the three domains of life: as close to the channel capacity as one desires with an arbi- Achaea, Prokaryotes and Eukaryotes. We analyze the trade- trarily small transmission error. Conversely, it is not possi- off between the transmission rate and the distortion in noisy ble to reliably transmit at a rate greater than the channel ca- protein communication channels. As expected, comparison pacity. The theorem, however, is not constructive and does of the optimal transmission rate with the channel capacity in- not provide any help in designing such codes. In the case dicates that the biological fidelity does not reach the Shan- of biological communication systems, however, evolution has non optimal distortion.
    [Show full text]