ABSTRACT HISTORICAL GRAPH DATA MANAGEMENT Udayan

Total Page:16

File Type:pdf, Size:1020Kb

ABSTRACT HISTORICAL GRAPH DATA MANAGEMENT Udayan ABSTRACT Title of dissertation: HISTORICAL GRAPH DATA MANAGEMENT Udayan Khurana, Doctor of Philosophy, 2015 Dissertation directed by: Professor Amol Deshpande Department of Computer Science Over the last decade, we have witnessed an increasing interest in temporal analysis of information networks such as social networks or citation networks. Finding temporal interaction patterns, visualizing the evolution of graph properties, or even simply com- paring them across time, has proven to add significant value in reasoning over networks. However, because of the lack of underlying data management support, much of the work on large-scale graph analytics to date has largely focused on the study of static properties of graph snapshots. Unfortunately, a static view of interactions between entities is often an oversimplification of several complex phenomena like the spread of epidemics, informa- tion diffusion, formation of online communities, and so on. In the absence of appropriate support, an analyst today has to manually navigate the added temporal complexity of large evolving graphs, making the process cumbersome and ineffective. In this dissertation, I address the key challenges in storing, retrieving, and analyzing large historical graphs. In the first part, I present DeltaGraph, a novel, extensible, highly tunable, and distributed hierarchical index structure that enables compact recording of the historical information, and that supports efficient retrieval of historical graph snapshots. I present analytical models for estimating required storage space and snapshot retrieval times which aid in choosing the right parameters for a specific scenario. I also present optimizations such as partial materialization and columnar storage to speed up snapshot retrieval. In the second part, I present Temporal Graph Index that builds upon DeltaGraph to support version-centric retrieval such as a node’s 1-hop neighborhood history, along with snapshot reconstruction. It provides high scalability, employing careful partitioning, distribution, and replication strategies that effectively deal with temporal and topological skew, typical of temporal graph datasets. In the last part of the dissertation, I present Temporal Graph Analysis Framework that enables analysts to effectively express a variety of complex historical graph analysis tasks using a set of novel temporal graph operators and to execute them in an efficient and scalable manner on a cloud. My proposed solutions are engineered in the form of a framework called the Historical Graph Store, designed to facilitate a wide variety of large-scale historical graph analysis tasks. Historical Graph Data Management by Udayan Khurana Dissertation submitted to the Faculty of the Graduate School of the University of Maryland, College Park in partial fulfillment of the requirements for the degree of Doctor of Philosophy 2015 Advisory Committee: Professor Amol Deshpande Chair/Advisor Professor Jimmy Lin Dean’s Representative Professor Tudor Dumitras¸ Committee Member Dr. Catherine Plaisant Committee Member Professor Mihai Pop Committee Member c Copyright by Udayan Khurana 2015 Dedication To my beloved family and friends. To all the data that my code crunched. To all the moments that didn’t count in the end. To the hope of a happier planet. ii Acknowledgments My ability to write this dissertation has been in part due to the help, guidance and support from several people. I am grateful to all of them for being a part of my life. Foremost, I want to sincerely thank my advisor Amol Deshpande. His guidance over the course of graduate school greatly helped me in all aspects of my doctoral research. Working with him continuously raised my expectations which was instrumental in the growth of my skills as a researcher. Also, his patience on several occasions helped me work my way through tough times. I also acknowledge my defense committee members Jimmy Lin, Catherine Plaisant, Mihai Pop and Tudor Dumitras for their constructive suggestions and critiques. My dis- cussions with professors Ben Shneiderman and Nick Roussopoulos over the years were also fruitful in several ways. I am thankful to the department staff, Jenny Story and Fatima Bangura in particular, for their help in all things bureaucratic. My internships at IBM helped me gain a different perspective on research and for that I would like to thank my mentors Srinivasan Parthasarathy and Deepak Turaga. I cherish the time spent with my database lab-mates Ashwin, Theodoros, Jayanta, Waala, Abdul, Hui, Souvik and Amit. Jokes, caricatures and conversations we shared, apart from all the help in form of critiques, motivation and suggestions will be thoroughly missed. During the long time I spent in Maryland and Washington DC, I met many people who touched my life and made this place feel like home. In particular, I feel fortunate to have met Alice, Hong, Abhishek, Kostas, Sheetal, Sushant, Nakul, Pang, Parul, Kleoniki, Nof and Vikas. I don’t want to miss a shout out to those who were miles or oceans away, iii but always cared – Sumeet, Mubin, Medha, Joseph, Sandy and Anand. I want to thank my brother Sukant for always inspiring me with his passion for science. Above all, I want to thank my parents Sarita and Vinod, for being there for me, unconditionally and endlessly. I hope I succeed in imbibing a tiny fraction of the academic quality and personal integrity I see in both of them. iv Table of Contents List of Figures 1 List of Tables 6 1 Introduction 7 1.1 Examples of Temporal Networks and Analysis . 10 1.2 Challenges . 16 1.2.1 Storing and fetching temporal graphs . 18 1.2.2 Scalable Analytics . 22 1.3 Contributions . 24 1.3.1 DeltaGraph: Reconstructing Past States of a Graph . 24 1.3.2 TGI: Generalized Temporal Graph Indexing at Scale . 26 1.3.3 Temporal Graph Analytics . 27 1.4 Graph Data Model . 27 1.5 Organization of the dissertation . 29 2 Background 31 2.1 Temporal Graph Analysis . 31 2.1.1 Dynamic Social Network Analysis . 31 2.1.2 Temporal Network Visualization . 32 2.2 Temporal Data Management . 33 2.2.1 Temporal Queries and Storage . 34 2.2.2 Version Management . 35 2.3 Graph Data Management . 36 2.3.1 Graph Storage . 36 2.3.2 Graph Query and Processing Frameworks . 38 2.3.3 Temporal Graph Data Stores . 38 3 Historical Graph Snapshot Retrieval 40 3.1 Introduction . 40 3.2 Background . 42 3.3 DeltaGraph . 45 v 3.3.1 Anatomy of DeltaGraph . 47 3.3.2 Snapshot Queries . 49 3.3.3 Accessibility . 50 3.4 Snapshot Retrieval . 52 3.4.1 Single-point Snapshot Retrieval . 52 3.4.2 Multi-point Snapshot Retrieval . 53 3.4.3 Composite Time-expression Graph Retrieval . 55 3.4.4 Speeding up Snapshot Queries using Prefetching . 57 3.4.5 Extensibility . 60 3.5 DeltaGraph Analysis . 64 3.5.1 Model of Graph Dynamics . 64 3.5.2 Differential Functions . 65 3.5.3 Space and Time Estimation Models . 66 3.5.4 Discussion . 69 3.6 Construction and Maintenance . 70 3.6.1 Batch Construction . 70 3.6.2 Configuring DeltaGraph . 72 3.6.3 Updates . 74 3.6.3.1 Preliminaries . 74 3.6.3.2 Update Procedure . 76 3.7 Experiments . 79 3.8 Conclusion . 90 4 Generalized Historical Graph Storage in the Cloud 92 4.1 Introduction . 92 4.2 Temporal Graph Index . 95 4.2.1 Preliminaries . 96 4.2.2 Prior Techniques . 98 4.2.3 TGI Description . 100 4.2.4 Scalable TGI design . 102 4.2.5 Partitioning and Replication . 106 4.2.6 Dynamic Graph Partitioning . 109 4.2.7 Fetching Graph Primitives . 113 4.3 Evaluation . 114 4.4 Conclusion . 122 5 Temporal Graph Analytics 125 5.1 Introduction . 125 5.1.1 Contributions . 126 5.2 Background . 127 5.3 Memory Efficient Loading of Multiple Versions . 129 5.3.1 GraphPool . 130 5.3.2 Clean-up of a graph from memory . 132 5.3.3 Visual Analytics on Historical Graph Snapshots . 132 5.3.3.1 Features . 133 vi 5.3.4 Experiments . 138 5.4 Temporal Analytics Framework (TAF) . 140 5.4.1 Temporal Graph Analysis Library . 140 5.4.2 System Implementation . 144 5.4.3 Experiments . 153 5.5 Summary . 154 6 Conclusion 156 6.1 Insights . 158 6.2 Future Directions . 160 6.2.1 Unified Temporal Graph Processing Framework . 160 6.2.2 Discovering Graphs of Interest . 161 6.2.3 A Framework for Finding Temporal Patterns in Evolving Graphs . 163 6.2.4 Shared Computation Across Graph Versions . 164 6.2.5 Estimating Changes in Graph Properties . 164 Bibliography 165 vii List of Figures 1.1 Dynamic network analysis (e.g., understanding how “communities” evolve in a social network, how centrality scores change in co-authorship net- works, etc.) can lend important insights into social, cultural, and natural phenomena. 12 1.2 The plot was constructed using our system over the DBLP network, and shows the evolution of the nodes ranked in top 25 in 2004. 13 1.3 Performing a snapshot-based evolutionary analysis with and without the support for efficient snapshot retrieval. 17 1.4 A temporal graph can be represented across two different dimensions - time and entity. The chart lists retrieval tasks, graph operations, example queries at different granularities of time and entity size. 20 1.5 Historical Graph Store. 25 3.1 Temporal relational database indexing techniques. 43 1 3.2 Interval tree is a hierarchical data structure that indexes intervals and can be potentially used to perform snapshot retrieval queries on temporal datasets. 44 3.3 DeltaGraphs with 4 leaves, leaf-eventlist size L, arity 2. ∆(Si;Sj) de- notes delta needed to construct Si from Sj.................. 48 3.4 The (Java) code snippet shows an example program that retrieves several graphs, and operates upon them.
Recommended publications
  • BIOINFORMATICS Doi:10.1093/Bioinformatics/Bti144
    Vol. 00 no. 0 2004, pages 1–11 BIOINFORMATICS doi:10.1093/bioinformatics/bti144 Solving and analyzing side-chain positioning problems using linear and integer programming Carleton L. Kingsford, Bernard Chazelle and Mona Singh∗ Department of Computer Science, Lewis-Sigler Institute for Integrative Genomics, Princeton University, 35, Olden Street, Princeton, NJ 08544, USA Received on August 1, 2004; revised on October 10, 2004; accepted on November 8, 2004 Advance Access publication … ABSTRACT set of possible rotamer choices (Ponder and Richards, 1987; Motivation: Side-chain positioning is a central component of Dunbrack and Karplus, 1993) for each Cα position on the homology modeling and protein design. In a common for- backbone. The goal is to choose a rotamer for each position mulation of the problem, the backbone is fixed, side-chain so that the total energy of the molecule is minimized. This conformations come from a rotamer library, and a pairwise formulation of SCP has been the basis of some of the more energy function is optimized. It is NP-complete to find even a successful methods for homology modeling (e.g. Petrey et al., reasonable approximate solution to this problem. We seek to 2003; Xiang and Honig, 2001; Jones and Kleywegt, 1999; put this hardness result into practical context. Bower et al., 1997) and protein design (e.g. Dahiyat and Mayo, Results: We present an integer linear programming (ILP) 1997; Malakauskas and Mayo, 1998; Looger et al., 2003). In formulation of side-chain positioning that allows us to tackle homology modeling, the goal is to predict the structure for a large problem sizes.
    [Show full text]
  • BIOGRAPHICAL SKETCH NAME: Berger
    BIOGRAPHICAL SKETCH NAME: Berger, Bonnie eRA COMMONS USER NAME (credential, e.g., agency login): BABERGER POSITION TITLE: Simons Professor of Mathematics and Professor of Electrical Engineering and Computer Science EDUCATION/TRAINING (Begin with baccalaureate or other initial professional education, such as nursing, include postdoctoral training and residency training if applicable. Add/delete rows as necessary.) EDUCATION/TRAINING DEGREE Completion (if Date FIELD OF STUDY INSTITUTION AND LOCATION applicable) MM/YYYY Brandeis University, Waltham, MA AB 06/1983 Computer Science Massachusetts Institute of Technology SM 01/1986 Computer Science Massachusetts Institute of Technology Ph.D. 06/1990 Computer Science Massachusetts Institute of Technology Postdoc 06/1992 Applied Mathematics A. Personal Statement Advances in modern biology revolve around automated data collection and sharing of the large resulting datasets. I am considered a pioneer in the area of bringing computer algorithms to the study of biological data, and a founder in this community that I have witnessed grow so profoundly over the last 26 years. I have made major contributions to many areas of computational biology and biomedicine, largely, though not exclusively through algorithmic innovations, as demonstrated by nearly twenty thousand citations to my scientific papers and widely-used software. In recognition of my success, I have just been elected to the National Academy of Sciences and in 2019 received the ISCB Senior Scientist Award, the pinnacle award in computational biology. My research group works on diverse challenges, including Computational Genomics, High-throughput Technology Analysis and Design, Biological Networks, Structural Bioinformatics, Population Genetics and Biomedical Privacy. I spearheaded research on analyzing large and complex biological data sets through topological and machine learning approaches; e.g.
    [Show full text]
  • John Anthony Capra
    John Anthony Capra Contact Vanderbilt University e-mail: tony.capra-at-vanderbilt.edu Information Dept. of Biological Sciences www: http://www.capralab.org/ VU Station B, Box 35-1634 office: U5221 BSB/MRB III Nashville, TN 37235-1634 phone: (615) 343-3671 Research • Applying computational methods to problems in genetics, evolution, and biomedicine. Interests • Integrating genome-scale data to understand the functional effects of genetic differences between individuals and species. • Modeling evolutionary processes that drive the creation of lineage-specific traits and diseases. Academic Vanderbilt University, Nashville, Tennessee USA Employment Assistant Professor, Department of Biological Sciences August 2014 { Present Assistant Professor, Department of Biomedical Informatics February 2013 { Present Investigator, Center for Human Genetics Research Education And Gladstone Institutes, University of California, San Francisco, CA USA Training Postdoctoral Fellow, October 2009 { December 2012 • Advisor: Katherine Pollard Princeton University, Princeton, New Jersey USA Ph.D., Computer Science, June 2009 • Advisor: Mona Singh • Thesis: Algorithms for the Identification of Functional Sites in Proteins M.A., Computer Science, October 2006 Columbia College, Columbia University, New York, New York USA B.A., Computer Science, May 2004 B.A., Mathematics, May 2004 Pembroke College, Oxford University, Oxford, UK Columbia University Oxford Scholar, October 2002 { June 2003 • Subject: Mathematics Honors and Gladstone Institutes Award for Excellence in Scientific Leadership 2012 Awards Society for Molecular Biology and Evolution (SMBE) Travel Award 2012 PhRMA Foundation Postdoctoral Fellowship in Informatics 2011 { 2013 Princeton University Wu Graduate Fellowship 2004 { 2008 Columbia University Oxford Scholar 2002 { 2003 Publications Capra JA* and Kostka D*. Modeling DNA methylation dynamics with approaches from phyloge- netics.
    [Show full text]
  • Graduation 2019
    Department of Graduation Computer Science Celebration & Awards Dinner 2019 Evening Schedule 6:00pm Social Time 7:00pm Welcome Dr. Sanjeev Setia, Chair Department of Computer Science 7:10pm Dinner 8:00pm Presentation of Awards Dr. Sanjeev Setia, Chair Department of Computer Science Doctor of Philosophy Computer Science Indranil Banerjee Dissertation Title: Problems on Sorting, Sets and Graphs Major Professor: Dana Richards, PhD Arda Gumusalan Dissertation Title: Dynamic Modulation Scaling Enabled Real Time Transmission Scheduling For Wireless Sensor Networks Major Professor: Robert Simon, PhD Yun Guo Dissertation Title: Towards Automatically Localizing and Repairing SQL Faults Major Professors: Jeff Offut, PhD & Amihai Motro, PhD Mohan Krishnamoorthy Dissertation Title: Stochastic Optimization based on White-box Deterministic Approximations: Models, Algorithms and Application to Service Networks Major Professors: Alexander Brodsky, PhD & Daniel Menascé, PhD Arsalan Mousavian Dissertation Title: Semantic and 3D Understanding of a Scene for Robot Perception Major Professor : Jana Kosecka, PhD Zhiyun Ren Dissertation Title: Academic Performance Prediction with Machine Learning Techniques Major Professor : Huzefa Rangwala, PhD Md A. Reza Dissertation Title: Scene Understanding for Robotic Applications Major Professor : Jana Kosecka, PhD Venkateshwar Tadakamalla Dissertation Title: Analysis and Autonomic Elasticity Control for Multi-Server/Queues Under Traffic Surges in Cloud Environments Major Professor : Daniel A. Menascé, PhD Jianchao Tan
    [Show full text]
  • Emerging Topics in Biological Networks and Systems Biology Symposium at the Swedish Collegium for Advanced Study (Scas), Uppsala 9-11 October, 2017
    Emerging Topics in Biological Networks and Systems Biology Symposium at the Swedish Collegium for Advanced Study (scas), Uppsala 9-11 October, 2017 mona singh, Princeton University, usa Network-based Methods for Identifying Cancer Genes Abstract: A central goal in cancer genomics is to identify the somatic alterations that underpin tumor initiation and progression. While commonly mutated cancer genes are readily identifiable, those that are rarely mutated across samples are difficult to distinguish from the large numbers of other infrequently mutated genes. Molecular interactions and networks provide a powerful frame- work with which to tackle some of the difficulties arising from the diverse somatic mutational landscapes of cancers. In this talk, I will first demonstrate that cancer genes can be discovered by identifying genes whose interaction interfaces are enriched in somatic mutations. Next, I will show how to leverage per-individual mutational profiles within the context of protein-protein interaction networks in order to identify small connected subnetworks of genes that, while not individually frequently mutated, comprise pathways that are altered across (i.e., “cover”) a large fraction of individuals. Overall, these two approaches recapitulate known cancer driver genes, and discover novel, and sometimes rarely-mutated, genes with likely roles in cancer. About: Mona Singh obtained her AB and SM degrees at Harvard University, and her PhD at MIT, all three in Computer Science. She did postdoctoral work at the Whitehead Institute for Biomedical Research. She has been on the faculty at Princeton since 1999, and currently she is Professor of Computer Science in the computer science department and the Lewis-Sigler Institute for Integrative Genomics.
    [Show full text]
  • Detection of Cooperatively Bound Transcription Factor Pairs Using Chip-Seq Peak Intensities and Expectation Maximization
    bioRxiv preprint doi: https://doi.org/10.1101/120113; this version posted March 24, 2017. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY-NC 4.0 International license. Detection of cooperatively bound transcription factor pairs using ChIP-seq peak intensities and expectation maximization Vishaka Datta∗1, Rahul Siddharthan2, and Sandeep Krishna1 1Simons Centre for the Study of Living Machines, National Centre for Biological Sciences, TIFR, Bengaluru 560065, India 2The Institute of Mathematical Sciences/HBNI, Taramani, Chennai 600 113, India March 24, 2017 Abstract Transcription factors (TFs) often work cooperatively, where the binding of one TF to DNA enhances the binding affinity of a second TF to a nearby location. Such cooperative binding is important for activating gene expression from promoters and enhancers in both prokaryotic and eukaryotic cells. Existing methods to detect cooperative binding of a TF pair rely on analyzing the sequence that is bound. We propose a method that uses, instead, only ChIP-Seq peak intensities and an expectation maximisation (CPI-EM) algorithm. We validate our method using ChIP-seq data from cells where one of a pair of TFs under consideration has been genetically knocked out. Our algorithm relies on our observation that cooperative TF-TF binding is correlated with weak binding of one of the TFs, which we demonstrate in a variety of cell types, including E. coli, S. cerevisiae, M. musculus, as well as human cancer and stem cell lines.
    [Show full text]
  • PSB 2009 Attendees (As of January 9, 2009) Mario Albrecht Max Planck
    PSB 2009 Attendees (as of January 9, 2009) Mario Albrecht Steven Brenner Max Planck Institute for Informatics University of California, Berkeley Hesham Ali Andrzej Brodzik University of Nebraska at Omaha The MITRE Corporation Gil Alterovitz Lukas Burger Harvard/MIT Institute of Bioinformatics, University of Basel Gregory Arnold Amgen Gregory Burrows OHSU Adam Asare UCSF/ITN William Bush Vanderbilt University Pierre Baldi University of California Andrea Califano Columbia University Lars Barquist UC Berkeley J. Gregory Caporaso Univeristy of Colorado Denver James Bassingthwaighte Univeristy of Washington Vincent Carey Harvard Medical School Tanya Berger-Wolf University of Illinois at Chicago Yuhui Cheng University of California, San Diego Ghislain Bidaut INSERM U891 Institut Paoli-Calmette Raymond Cheong Johns Hopkins University Marco Blanchette Stowers Institute for Medical Research Annie Chiang Stanford University Ben Blencowe Gilsoo Cho Anthony Bonner Yonsei University University of Toronto Sung Bum Cho Ingrid Borecki Seoul National University Bioinformatics Washington University Kevin Cohen John Bouck University of Colorado Denver Ceres, Inc. Dilek Colak Philip Bourne King Faisal Specialist Hospital and University of California, San Diego Research Centre PSB 2009 Attendees (as of January 9, 2009) James Costello Laura Elnitski Indiana University NHGRI Anneleen Daemen Drew Endy Dept. Electrical Engineering, KULeuven Stanford University Denise Daley Eric Fahrenthold University of British Columbia Yiping Fan Paul Davis St Jude Children's
    [Show full text]
  • Predicting Specificity in Bzip Coiled-Coil Protein Interactions Comment Jessica H Fong*, Amy E Keating† and Mona Singh*
    Open Access Method2004FongetVolume al. 5, Issue 2, Article R11 Predicting specificity in bZIP coiled-coil protein interactions comment Jessica H Fong*, Amy E Keating† and Mona Singh* Addresses: *Computer Science Department and Lewis-Sigler Institute for Integrative Genomics, Princeton University, Olden Street, Princeton, NJ 08544, USA. †Department of Biology, Massachusetts Institute of Technology, Massachusetts Avenue, Cambridge, MA 02139, USA. Correspondence: Amy E Keating. E-mail: [email protected]. Mona Singh. E-mail: [email protected] reviews Published: 15 January 2004 Received: 22 September 2003 Revised: 21 November 2003 Genome Biology 2004, 5:R11 Accepted: 12 December 2003 The electronic version of this article is the complete one and can be found online at http://genomebiology.com/2004/5/2/R11 © 2004 Fong et al.; licensee BioMed Central Ltd. This is an Open Access article: verbatim copying and redistribution of this article are permitted in all media for any purpose, provided this notice is preserved along with the article's original URL. PredictingWenearlycorrect.methodgenerally. present all canFurthermore, human specificity abe method used and to inyeast for cross-validationpredict bZIP predicting bZIP coiled-coil bZIP proteins, interactionsprotein-protein testing protein our showsmethod ininteractions other interactions that identifies genome including s70%me and thediated of is bZIP stronga promising by experimental the interactions coiled-coil approach data while motif. for significantly maintaining predicting When tested improvescoiled-coil that on 92% interactions performan interacof predictions betweentionsce. moreOur are reports Abstract We present a method for predicting protein-protein interactions mediated by the coiled-coil motif. When tested on interactions between nearly all human and yeast bZIP proteins, our method deposited research identifies 70% of strong interactions while maintaining that 92% of predictions are correct.
    [Show full text]
  • Real-Time Analytics for Complex Structure Data
    Real-Time Analytics for Complex Structure Data Ting Guo A Thesis submitted for the degree of Doctor of Philosophy Faculty of Engineering and Information Technology University of Technology, Sydney 2015 2 Certificate of Authorship and Originality I certify that the work in this thesis has not previously been submitted for a degree nor has it been submitted as part of requirements for a degree except as fully acknowledged within the text. I also certify that the thesis has been written by me. Any help that I have received in my research work and the preparation of the thesis itself has been acknowledged. In addition, I certify that all information sources and literature used are indicated in the thesis. Signature of Student: Date: 3 4 Acknowledgments On having completed this thesis, I am especially thankful to my supervisor Prof. Chengqi Zhang and co-supervisor Prof. Xingquan Zhu, who had led me to an at one time unfamiliar area of academic research, and trusted me and given me as much as possible freedom to purse my own research interests. Prof. Zhu has taught me how to think and study indepen- dently and how to solve a difficult scientific problem in flexible but rigorous ways. He has sacrificed much of his precious time for developing my academic research skills. When I felt lost and terrified with my future, he always gave me the confidence and motivation to keep going and strive to get better. Prof. Zhang has also given me great help and support in life. I am thankful to the group members I met in the University of Technology, Sydney, including Shirui Pan, Lianhua Chi, Jia Wu, and many others.
    [Show full text]
  • The USTC Complex Co-Opts an Ancient Machinery to Drive Pirna Transcription In
    bioRxiv preprint doi: https://doi.org/10.1101/377390; this version posted July 30, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY-NC-ND 4.0 International license. The USTC complex co-opts an ancient machinery to drive piRNA transcription in C. elegans Chenchun Weng╪,1, Asia Kosalka╪,2, Ahmet C. Berkyurek╪,2, Przemyslaw Stempor2, Xuezhu Feng1, Hui Mao1, Chenming Zeng1, Wen-Jun Li3, Yong-Hong Yan3, Meng-Qiu Dong3, Cecilia Zuliani5, Orsolya Barabas5, Julie Ahringer2, Shouhong Guang*,1 and Eric A. Miska*,2,4 1 Hefei National Laboratory for Physical Sciences at the Microscale, School of Life Sciences, University of Science and Technology of China, Hefei, Anhui 230027, P.R. China. 2 Wellcome Cancer Research UK Gurdon Institute, University of Cambridge, Tennis Court Road, Cambridge CB2 1QN, UK; Department of Genetics, University of Cambridge, Downing Street, Cambridge CB2 3EH, UK. 3 National Institute of Biological Sciences, Beijing 102206, China. 4 Wellcome Sanger Institute, Wellcome Genome Campus, Cambridge CB10 1SA, UK 5 Structural and Computational Biology Unit, European Molecular Biology Laboratory (EMBL), 69117 Heidelberg, Germany. ╪ These authors contributed equally to this work. * Corresponding authors: S.G. ([email protected]) and E.A.M. ([email protected]) Running title: A USTC complex promotes piRNA biogenesis Keywords: piRNA, Ruby motif, SNPC, PRDE-1, SNPC-4, TOFU-4, TOFU-5, snRNA, U6 RNA bioRxiv preprint doi: https://doi.org/10.1101/377390; this version posted July 30, 2018.
    [Show full text]
  • Accurate Estimation of Gene Expression Levels from DGE Sequencing Data
    Accurate Estimation of Gene Expression Levels from DGE Sequencing Data Marius Nicolae and Ion M˘andoiu Computer Science & Engineering Department, University of Connecticut 371 Fairfield Way, Storrs, CT 06269 {man09004,ion}@engr.uconn.edu Abstract. Two main transcriptome sequencing protocols have been pro- posed in the literature: the most commonly used shotgun sequencing of full length mRNAs (RNA-Seq) and 3’-tag digital gene expression (DGE). In this paper we present a novel expectation-maximization algorithm, called DGE-EM, for inference of gene-specific expression levels from DGE tags. Unlike previous methods, our algorithm takes into account alter- native splicing isoforms and tags that map at multiple locations in the genome, and corrects for incomplete digestion and sequencing errors. The open source Java/Scala implementation of the DGE-EM algorithm is freely available at http://dna.engr.uconn.edu/software/DGE-EM/. Experimental results on real DGE data generated from reference RNA samples show that our algorithm outperforms commonly used estima- tion methods based on unique tag counting. Furthermore, the accuracy of DGE-EM estimates is comparable to that obtained by state-of-the-art estimation algorithms from RNA-Seq data for the same samples. Results of a comprehensive simulation study assessing the effect of various ex- perimental parameters suggest that further improvements in estimation accuracy could be achieved by optimizing DGE protocol parameters such as the anchoring enzymes and digestion time. 1 Introduction Massively parallel transcriptome sequencing is quickly replacing microarrays as the technology of choice for performing gene expression profiling due to its wider dynamic range and digital quantitation capabilities.
    [Show full text]
  • Information Extraction Meets the Semantic Web: a Survey
    Undefined 0 (2016) 1 1 IOS Press Information Extraction meets the Semantic Web: A Survey Editor(s): Andreas Hotho, Julius-Maximilians-Universität Würzburg, Würzburg, Germany Solicited review(s): Dat Ba Nguyen, Vietnam National University, Hanoi, Vietnam; Simon Scerri, University of Bonn, Germany; 2 Anonymous Reviewers Open review(s): Michelle Cheatham, Wright State University, Dayton, Ohio, USA Jose L. Martinez-Rodriguez a, Aidan Hogan b and Ivan Lopez-Arevalo a a Cinvestav Tamaulipas, Ciudad Victoria, Mexico E-mail: {lmartinez,ilopez}@tamps.cinvestav.mx b IMFD Chile; Department of Computer Science, University of Chile, Chile E-mail: [email protected] Abstract. We provide a comprehensive survey of the research literature that applies Information Extraction techniques in a Se- mantic Web setting. Works in the intersection of these two areas can be seen from two overlapping perspectives: using Seman- tic Web resources (languages/ontologies/knowledge-bases/tools) to improve Information Extraction, and/or using Information Extraction to populate the Semantic Web. In more detail, we focus on the extraction and linking of three elements: entities, concepts and relations. Extraction involves identifying (textual) mentions referring to such elements in a given unstructured or semi-structured input source. Linking involves associating each such mention with an appropriate disambiguated identifier referring to the same element in a Semantic Web knowledge-base (or ontology), in some cases creating a new identifier where necessary. With respect to entities, works involving (Named) Entity Recognition, Entity Disambiguation, Entity Linking, etc. in the context of the Semantic Web are considered. With respect to concepts, works involving Terminology Extraction, Keyword Extraction, Topic Modeling, Topic Labeling, etc., in the context of the Semantic Web are considered.
    [Show full text]