Information Resources in Molecular Biology Marcela Davila-Lopez How many and where

Size: px
Start display at page:

Download "Information Resources in Molecular Biology Marcela Davila-Lopez How many and where"

Transcription

1 Information Resources in Molecular Biology Marcela Davila-Lopez How many and where

2 Data growth DB: What and Why A Database is a shared collection of logically related data, and a description of this data, designed to meet the information needs of a community of users. 1900s s punched cards (1951) 1790s Magnetic tape Fasta format Tab delimited

3 GenBank format Flat-file DB Pros: Text files easy! Search Linux commands Customized scripts PERL Drawbacks: Incompatible file formats Duplication of data Relate data Update Relational DB Search Structured Query Language (SQL) NO Duplication of data EASY to relate data THERE ARE NO Incompatible file formats

4 Object-oriented DB In this model, objects contain data and the action that can be taken on it. Pros: Can hold unstructured data: video, audio, photographs easily Handles highly complex information Provides a high performance level Compatible with OO programming languages such as Python, Java, Visual Basic.NET, C++. Search Object Query Language (OQL) Drawbacks: Difficult to use Expensive to develop Lack of experience standards and support for security Incompatible with relational dbs (more popular) Data Webhouse (Atlas UbiC) A distributed data warehouse that is implemented over the Web with no central data repository Advantages: Deals with data hetereogeneity Holds historical data Supports SQL, C++, Java, Perl, Toolbox Disadvantages: Underestimation of data loading Required data not capture Increased end-user demands High maintainance Distributed DB (Reciprocal Net) Data diff locations but shared Common DBMS Advantages: Drawbacks: Local autonomy Extra work must also be done to maintain/ Faults/overloads/modifications in secure multiple systems one DB system it won t affect others Extensive infrastructure means extra labour $ ntwk of small cpus < 1 large cpu costs Data is located near the site of It s a young field greatest demand

5 Local vs on-line access DB Types in Molecula Biology Primary sequence databases GenBank - U.S. (NCBI) EMBL - Europe (The European Molecular Biology Laboratory) DDBJ - DNA Data Bank of Japan UniProt - Universal Protein Resource Meta-databases (database of databases): They collect data from different sources and usually makes them available in new and more convenient form, or with an emphasis on a particular disease or organism. Entrez (NCBI) Bioinformatic Harvester (Karlsruhe Institute of Technology) What is in there? Data Primary: Nucleotide sequence Secondary: Protein domains Data quality Consistency Guidelines, nucleotide vs protein sequence, existence of cross-references, alternative names replaced with approved ones, misspellings... Redundancy Repetition of analysis several entries Non-redundant database Updates New entries, correction of existing ones. Version numbers Weekly, monthly... Curation Annotation from experimental data

6 Ontologies: controlled vocabulary, consistent descriptions used to classify/organize data. They may define relationships between the terms, making it a structured vocabulary. Gene Ontology Project: to describe gene product attributes in any organism across databases Microarray Gene Expression Data: describe gene expression experiments Sequence Ontology Project: describe features of nt or proteins Multiple Alingment Ontology: describe multiple sequence alignments and their methods, as well as structural or functional information The Gene Ontology DB 1998 The Gene Ontology (GO) project is a collaborative effort to address the need for consistent descriptions of gene products in different databases (FlyBase, SGC, MGD plants, animals, microbial genomes) Organizing principles: Cellular component: location Molecular function: activities, jobs transporting things around, binding to things, holding things together, changing one thing into another. Biological process: series of events of molecular functions The gene product cytochrome c can be described by the terms: oxidoreductase oxidative phosphorylation and induction of cell death mitochondrial matrix and mitochondrial inner membrane Application: GO terms What genes are related to cell division? Which GO terms are over-represented in cancer tissue as compared to normal tissuse? NCBI: National Center for Biotechnology Information Nucleotide Taxonomy Genome Project Protein Structure Literature (MeSH)

7 GenBank: An annotated collection of all publicly available nucleotide RefSeq: Collection of sequences (DNA,transcripts, proteins) integrated, non-redundant, well-annotated dbsnp: Broad collection of simple genetic polymorphisms. These are small genetic change, or variation, that can occur within a person's DNA sequence. They are the most common variations, approximately once every 100 to 300 bases, that can point to heritable phenotypes. They are useful to evaluate the predisposition to disease or as a diagnostic tool. They also aid to predict the response to drug regimens and are used as biological markers for the mapping of genes. dbest: Contains sequence data and other information on single-pass" cdna sequences called Expressed Sequence Tags. These are small pieces of DNA sequence (usually 200 to 500 nucleotides long) that are generated by sequencing either one or both ends of an expressed gene. They can be used to study cells, tissues, organs under certain conditions, as a gene identification method and in the study of hereditary diseases DB-specific search Entrez:Global query cross-database Search System eutils: Entrez Programming Utilities UCSC: UC Santa Cruz Genome Bioinformatics group Contains assemblies for a large collection of genomes. Genome Browser Table Browser

8 Ensembl EBI and the Wellcome Trust Sanger Institute 1999 data of HGP Centralized resource Researchers studying genomes: Vertebrates, Model organisms and Plants, fungi, bacterias, protists All sequence data is fed into a software pipeline (Perl) into a relational DB for analysis and display BioMart: Query-oriented data integration system Based on distributed data warehousing ideas Single or multiple databases Results in table format User friendly UniProt: Universal Protein Resource 1980 s Protein sequence database High quality detailed curation EBI + SIB Quick release of data not yet annotated TrEMBL (Translation of EMBL nucleotide sequences). Only computationally annotated entries 2002 EBI + SIB + PIR Uniprot Consortium

9 MySQL Structured Query Language: a computer language designed for the retrieval and management of data in relational database management systems, database schema creation and modification, and database object access control management. It is an interactive programming language for querying information from and updating a database Name Owner Species Sex Birth Death Fluffy Harold cat f Claus Gwen cat m Buffy Harold dog f Fang Benny dog m Bowser Diane dog m Chirpy Gwen bird m Whistler Gwen bird Slim Benny snake m Puffball Diane hamster f Some commands/syntax: shell> mysql mysql> mysql> QUIT Bye mysql> USE mystore; Database changed mysql> SHOW TABLES; mysql> SELECT DATABASE(); mysql> DESCRIBE pet; mysql> LOAD DATA LOCAL INFILE /path/pet.txt INTO TABLE pet; mysql> INSERT INTO pet -> VALUES ( Puffball, Diane, hamster, f, , NULL ); mysql> UPDATE pet SET sex = f WHERE name = Chirpy ; mysql> DELETE FROM pet WHERE owner = Harold ; SELECT FROM WHERE what_to_select which_table conditions_to_satisfy; mysql> SELECT * FROM pet; mysql> SELECT * FROM pet WHERE name = Bowser ; mysql> SELECT * FROM pet WHERE birth >= ; {Comparison operators: =,<>,<,>,!=,<=,>=} mysql> SELECT * FROM pet WHERE species = dog AND sex = f ;

10 {Logical operators: AND, OR, NOT} mysql> SELECT * FROM pet WHERE species = snake OR species = bird ; mysql> SELECT * FROM pet -> WHERE (species = cat AND sex = m ) -> OR (species = dog AND sex = f ); mysql> SELECT owner FROM pet; mysql> SELECT name,birth FROM pet; mysql> SELECT name, species FROM pet WHERE species = cat -> OR species = dog ; mysql> SELECT DISTINCT owner FROM pet; mysql> SELECT name, birth FROM pet ORDER BY birth; mysql> SELECT name, birth FROM pet ORDER BY birth DESC; _ matches any single character % matches an arbitrary number of characters (including zero) case-insensitive by default LIKE or NOT LIKE mysql> SELECT * FROM pet WHERE name LIKE b% ; mysql> SELECT * FROM pet WHERE owner LIKE b ; mysql> SELECT * FROM pet WHERE name LIKE ;. matches any single character [...] matches any character within the brackets {n} repeat-n-times * matches zero or more instances of the previous character ^ at the beginning $ at the end case-insensitive by default REGEXP or NOT REGEXP mysql> SELECT * FROM pet WHERE name REGEXP e ; mysql> SELECT * FROM pet WHERE species REGEXP ^[WF] ; mysql> SELECT * FROM pet WHERE name REGEXP ^...$ ; mysql> SELECT * FROM pet WHERE name REGEXP ^.{5}$ ; mysql> SELECT COUNT(*) FROM pet; mysql> SELECT species, COUNT(*) FROM pet GROUP BY species; mysql> SELECT owner, COUNT(*) AS petsno -> FROM pet -> GROUP BY owner; mysql> SELECT species,sex, COUNT(*) FROM pet -> WHERE species = dog OR species = cat -> GROUP BY species,sex;

Databases in Bioinformatics

Databases in Bioinformatics Chalmers BIOINFORMATICS AND SYSTEMS BIOLOGY, MSC PROGR 2007-2008 Sequence bioinformatics UMF018 Databases in Bioinformatics Göteborg, 2007 Overview Table Browser from UCSC 1/53 1 2/53 Structured Query

More information

Topics of the talk. Biodatabases. Data types. Some sequence terminology...

Topics of the talk. Biodatabases. Data types. Some sequence terminology... Topics of the talk Biodatabases Jarno Tuimala / Eija Korpelainen CSC What data are stored in biological databases? What constitutes a good database? Nucleic acid sequence databases Amino acid sequence

More information

Introduction to MySQL

Introduction to MySQL Introduction to MySQL Michael Schroeder BIOTEC TU Dresden ms@biotec.tu-dresden.de Structure MySQL Console & Basic Commands A Little Exercise MySQL Console & Basic Commands SELECT DISTINCT Type FROM Feature;

More information

Operating systems fundamentals - B07

Operating systems fundamentals - B07 Operating systems fundamentals - B07 David Kendall Northumbria University David Kendall (Northumbria University) Operating systems fundamentals - B07 1 / 33 What is SQL? Structured Query Language Used

More information

Bioinformatics Hubs on the Web

Bioinformatics Hubs on the Web Bioinformatics Hubs on the Web Take a class The Galter Library teaches a related class called Bioinformatics Hubs on the Web. See our Classes schedule for the next available offering. If this class is

More information

Genome Browsers Guide

Genome Browsers Guide Genome Browsers Guide Take a Class This guide supports the Galter Library class called Genome Browsers. See our Classes schedule for the next available offering. If this class is not on our upcoming schedule,

More information

CAP BIOINFORMATICS Su-Shing Chen CISE. 8/19/2005 Su-Shing Chen, CISE 1

CAP BIOINFORMATICS Su-Shing Chen CISE. 8/19/2005 Su-Shing Chen, CISE 1 CAP 5510-2 BIOINFORMATICS Su-Shing Chen CISE 8/19/2005 Su-Shing Chen, CISE 1 Building Local Genomic Databases Genomic research integrates sequence data with gene function knowledge. Gene ontology to represent

More information

Genome Browser. Background and Strategy

Genome Browser. Background and Strategy Genome Browser Background and Strategy Contents What is a genome browser? Purpose of a genome browser Examples Structure Extra Features Contents What is a genome browser? Purpose of a genome browser Examples

More information

Genome Browsers - The UCSC Genome Browser

Genome Browsers - The UCSC Genome Browser Genome Browsers - The UCSC Genome Browser Background The UCSC Genome Browser is a well-curated site that provides users with a view of gene or sequence information in genomic context for a specific species,

More information

New generation of patent sequence databases Information Sources in Biotechnology Japan

New generation of patent sequence databases Information Sources in Biotechnology Japan New generation of patent sequence databases Information Sources in Biotechnology Japan EBI is an Outstation of the European Molecular Biology Laboratory. Patent-related resources Patents Patent Resources

More information

BioExtract Server User Manual

BioExtract Server User Manual BioExtract Server User Manual University of South Dakota About Us The BioExtract Server harnesses the power of online informatics tools for creating and customizing workflows. Users can query online sequence

More information

ENERGY SYSTEMS LABORATORY

ENERGY SYSTEMS LABORATORY Publication number ESL-TR-03/01-03 LOANSTAR DATABASE OVERVIEW A LoanSTAR Deliverable Report Final Report James Sweeney, Jr. Senior Research Associate January 2003 ENERGY SYSTEMS LABORATORY Texas Engineering

More information

Min Wang. April, 2003

Min Wang. April, 2003 Development of a co-regulated gene expression analysis tool (CREAT) By Min Wang April, 2003 Project Documentation Description of CREAT CREAT (coordinated regulatory element analysis tool) are developed

More information

Integrated Access to Biological Data. A use case

Integrated Access to Biological Data. A use case Integrated Access to Biological Data. A use case Marta González Fundación ROBOTIKER, Parque Tecnológico Edif 202 48970 Zamudio, Vizcaya Spain marta@robotiker.es Abstract. This use case reflects the research

More information

EBI patent related services

EBI patent related services EBI patent related services 4 th Annual Forum for SMEs October 18-19 th 2010 Jennifer McDowall Senior Scientist, EMBL-EBI EBI is an Outstation of the European Molecular Biology Laboratory. Overview Patent

More information

Data Modeling and Database Design

Data Modeling and Database Design INF1343, Winter 2012 Data Modeling and Database Design Yuri Takhteyev Faculty of Information University of Toronto This presentation is licensed under Creative Commons Attribution License, v. 3.0. To view

More information

How to store and visualize RNA-seq data

How to store and visualize RNA-seq data How to store and visualize RNA-seq data Gabriella Rustici Functional Genomics Group gabry@ebi.ac.uk EBI is an Outstation of the European Molecular Biology Laboratory. Talk summary How do we archive RNA-seq

More information

mpmorfsdb: A database of Molecular Recognition Features (MoRFs) in membrane proteins. Introduction

mpmorfsdb: A database of Molecular Recognition Features (MoRFs) in membrane proteins. Introduction mpmorfsdb: A database of Molecular Recognition Features (MoRFs) in membrane proteins. Introduction Molecular Recognition Features (MoRFs) are short, intrinsically disordered regions in proteins that undergo

More information

The UCSC Genome Browser

The UCSC Genome Browser The UCSC Genome Browser Search, retrieve and display the data that you want Materials prepared by Warren C. Lathe, Ph.D. Mary Mangan, Ph.D. www.openhelix.com Updated: Q3 2006 Version_0906 Copyright OpenHelix.

More information

2) NCBI BLAST tutorial This is a users guide written by the education department at NCBI.

2) NCBI BLAST tutorial   This is a users guide written by the education department at NCBI. Web resources -- Tour. page 1 of 8 This is a guided tour. Any homework is separate. In fact, this exercise is used for multiple classes and is publicly available to everyone. The entire tour will take

More information

EBI services. Jennifer McDowall EMBL-EBI

EBI services. Jennifer McDowall EMBL-EBI EBI services Jennifer McDowall EMBL-EBI The SLING project is funded by the European Commission within Research Infrastructures of the FP7 Capacities Specific Programme, grant agreement number 226073 (Integrating

More information

Tutorial 1: Exploring the UCSC Genome Browser

Tutorial 1: Exploring the UCSC Genome Browser Last updated: May 12, 2011 Tutorial 1: Exploring the UCSC Genome Browser Open the homepage of the UCSC Genome Browser at: http://genome.ucsc.edu/ In the blue bar at the top, click on the Genomes link.

More information

Biostatistics and Bioinformatics Molecular Sequence Databases

Biostatistics and Bioinformatics Molecular Sequence Databases . 1 Description of Module Subject Name Paper Name Module Name/Title 13 03 Dr. Vijaya Khader Dr. MC Varadaraj 2 1. Objectives: In the present module, the students will learn about 1. Encoding linear sequences

More information

NCBI News, November 2009

NCBI News, November 2009 Peter Cooper, Ph.D. NCBI cooper@ncbi.nlm.nh.gov Dawn Lipshultz, M.S. NCBI lipshult@ncbi.nlm.nih.gov Featured Resource: New Discovery-oriented PubMed and NCBI Homepage The NCBI Site Guide A new and improved

More information

Genomic Analysis with Genome Browsers.

Genomic Analysis with Genome Browsers. Genomic Analysis with Genome Browsers http://barc.wi.mit.edu/hot_topics/ 1 Outline Genome browsers overview UCSC Genome Browser Navigating: View your list of regions in the browser Available tracks (eg.

More information

When we search a nucleic acid databases, there is no need for you to carry out your own six frame translation. Mascot always performs a 6 frame

When we search a nucleic acid databases, there is no need for you to carry out your own six frame translation. Mascot always performs a 6 frame 1 When we search a nucleic acid databases, there is no need for you to carry out your own six frame translation. Mascot always performs a 6 frame translation on the fly. That is, 3 reading frames from

More information

2. Take a few minutes to look around the site. The goal is to familiarize yourself with a few key components of the NCBI.

2. Take a few minutes to look around the site. The goal is to familiarize yourself with a few key components of the NCBI. 2 Navigating the NCBI Instructions Aim: To become familiar with the resources available at the National Center for Bioinformatics (NCBI) and the search engine Entrez. Instructions: Write the answers to

More information

Literature Databases

Literature Databases Literature Databases Introduction to Bioinformatics Dortmund, 16.-20.07.2007 Lectures: Sven Rahmann Exercises: Udo Feldkamp, Michael Wurst 1 Overview 1. Databases 2. Publications in Science 3. PubMed and

More information

Applied Bioinformatics

Applied Bioinformatics Applied Bioinformatics Course Overview & Introduction to Linux Bing Zhang Department of Biomedical Informatics Vanderbilt University bing.zhang@vanderbilt.edu What is bioinformatics Bio Bioinformatics

More information

ArrayExpress and Expression Atlas: Mining Functional Genomics data

ArrayExpress and Expression Atlas: Mining Functional Genomics data and Expression Atlas: Mining Functional Genomics data Gabriella Rustici, PhD Functional Genomics Team EBI-EMBL gabry@ebi.ac.uk What is functional genomics (FG)? The aim of FG is to understand the function

More information

Applied Bioinformatics

Applied Bioinformatics Applied Bioinformatics Course Overview & Introduction to Linux Bing Zhang Department of Biomedical Informatics Vanderbilt University bing.zhang@vanderbilt.edu What is bioinformatics Bio Bioinformatics

More information

Introduction to Genome Browsers

Introduction to Genome Browsers Introduction to Genome Browsers Rolando Garcia-Milian, MLS, AHIP (Rolando.milian@ufl.edu) Department of Biomedical and Health Information Services Health Sciences Center Libraries, University of Florida

More information

User Guide for DNAFORM Clone Search Engine

User Guide for DNAFORM Clone Search Engine User Guide for DNAFORM Clone Search Engine Document Version: 3.0 Dated from: 1 October 2010 The document is the property of K.K. DNAFORM and may not be disclosed, distributed, or replicated without the

More information

Bioinformatics Data Distribution and Integration via Web Services and XML

Bioinformatics Data Distribution and Integration via Web Services and XML Letter Bioinformatics Data Distribution and Integration via Web Services and XML Xiao Li and Yizheng Zhang* College of Life Science, Sichuan University/Sichuan Key Laboratory of Molecular Biology and Biotechnology,

More information

BovineMine Documentation

BovineMine Documentation BovineMine Documentation Release 1.0 Deepak Unni, Aditi Tayal, Colin Diesh, Christine Elsik, Darren Hag Oct 06, 2017 Contents 1 Tutorial 3 1.1 Overview.................................................

More information

Automatic annotation in UniProtKB using UniRule, and Complete Proteomes. Wei Mun Chan

Automatic annotation in UniProtKB using UniRule, and Complete Proteomes. Wei Mun Chan Automatic annotation in UniProtKB using UniRule, and Complete Proteomes Wei Mun Chan Talk outline Introduction to UniProt UniProtKB annotation and propagation Data increase and the need for Automatic Annotation

More information

Portals and workflows: Taverna Workbench. Paolo Romano National Cancer Research Institute, Genova

Portals and workflows: Taverna Workbench. Paolo Romano National Cancer Research Institute, Genova Portals and workflows: Taverna Workbench Paolo Romano National Cancer Research Institute, Genova (paolo.romano@istge.it) 1 Summary Information and data integration in biology Web Services and workflow

More information

Data Curation Profile Human Genomics

Data Curation Profile Human Genomics Data Curation Profile Human Genomics Profile Author Profile Author Institution Name Contact J. Carlson N. Brown Purdue University J. Carlson, jrcarlso@purdue.edu Date of Creation October 27, 2009 Date

More information

EMBL-EBI Patent Services

EMBL-EBI Patent Services EMBL-EBI Patent Services 5 th Annual Forum for SMEs October 6-7 th 2011 Jennifer McDowall EBI is an Outstation of the European Molecular Biology Laboratory. Patent resources at EBI 2 http://www.ebi.ac.uk/patentdata/

More information

Wilson Leung 01/03/2018 An Introduction to NCBI BLAST. Prerequisites: Detecting and Interpreting Genetic Homology: Lecture Notes on Alignment

Wilson Leung 01/03/2018 An Introduction to NCBI BLAST. Prerequisites: Detecting and Interpreting Genetic Homology: Lecture Notes on Alignment An Introduction to NCBI BLAST Prerequisites: Detecting and Interpreting Genetic Homology: Lecture Notes on Alignment Resources: The BLAST web server is available at https://blast.ncbi.nlm.nih.gov/blast.cgi

More information

mgu74a.db November 2, 2013 Map Manufacturer identifiers to Accession Numbers

mgu74a.db November 2, 2013 Map Manufacturer identifiers to Accession Numbers mgu74a.db November 2, 2013 mgu74aaccnum Map Manufacturer identifiers to Accession Numbers mgu74aaccnum is an R object that contains mappings between a manufacturer s identifiers and manufacturers accessions.

More information

Web-based tools for Bioinformatics; A (free) introduction to (freely available) NCBI, MUSC and World-wide Bioinformatics Resources.

Web-based tools for Bioinformatics; A (free) introduction to (freely available) NCBI, MUSC and World-wide Bioinformatics Resources. 1 of 12 9/10/2003 11:15 AM Web-based tools for Bioinformatics; A (free) introduction to (freely available) NCBI, MUSC and World-wide Bioinformatics Resources. When and Where---Wednesdays at 1pm Room 438

More information

mogene20sttranscriptcluster.db

mogene20sttranscriptcluster.db mogene20sttranscriptcluster.db November 17, 2017 mogene20sttranscriptclusteraccnum Map Manufacturer identifiers to Accession Numbers mogene20sttranscriptclusteraccnum is an R object that contains mappings

More information

Two Examples of Datanomic. David Du Digital Technology Center Intelligent Storage Consortium University of Minnesota

Two Examples of Datanomic. David Du Digital Technology Center Intelligent Storage Consortium University of Minnesota Two Examples of Datanomic David Du Digital Technology Center Intelligent Storage Consortium University of Minnesota Datanomic Computing (Autonomic Storage) System behavior driven by characteristics of

More information

Manual of mirdeepfinder for EST or GSS

Manual of mirdeepfinder for EST or GSS Manual of mirdeepfinder for EST or GSS Index 1. Description 2. Requirement 2.1 requirement for Windows system 2.1.1 Perl 2.1.2 Install the module DBI 2.1.3 BLAST++ 2.2 Requirement for Linux System 2.2.1

More information

HsAgilentDesign db

HsAgilentDesign db HsAgilentDesign026652.db January 16, 2019 HsAgilentDesign026652ACCNUM Map Manufacturer identifiers to Accession Numbers HsAgilentDesign026652ACCNUM is an R object that contains mappings between a manufacturer

More information

EBI is an Outstation of the European Molecular Biology Laboratory.

EBI is an Outstation of the European Molecular Biology Laboratory. EBI is an Outstation of the European Molecular Biology Laboratory. InterPro is a database that groups predictive protein signatures together 11 member databases single searchable resource provides functional

More information

Public Repositories Tutorial: Bulk Downloads

Public Repositories Tutorial: Bulk Downloads Public Repositories Tutorial: Bulk Downloads Almost all of the public databases, genome browsers, and other tools you have explored so far offer some form of access to rapidly download all or large chunks

More information

ClinVar. Jennifer Lee, PhD, NCBI/NLM/NIH ClinVar

ClinVar. Jennifer Lee, PhD, NCBI/NLM/NIH ClinVar ClinVar What is ClinVar ClinVar is a freely available, central archive for associating observed variation with supporting clinical and experimental evidence for a wide range of disorders. The database

More information

Enabling Open Science: Data Discoverability, Access and Use. Jo McEntyre Head of Literature Services

Enabling Open Science: Data Discoverability, Access and Use. Jo McEntyre Head of Literature Services Enabling Open Science: Data Discoverability, Access and Use Jo McEntyre Head of Literature Services www.ebi.ac.uk About EMBL-EBI Part of the European Molecular Biology Laboratory International, non-profit

More information

4.1. Access the internet and log on to the UCSC Genome Bioinformatics Web Page (Figure 1-

4.1. Access the internet and log on to the UCSC Genome Bioinformatics Web Page (Figure 1- 1. PURPOSE To provide instructions for finding rs Numbers (SNP database ID numbers) and increasing sequence length by utilizing the UCSC Genome Bioinformatics Database. 2. MATERIALS 2.1. Sequence Information

More information

hgu133plus2.db December 11, 2017

hgu133plus2.db December 11, 2017 hgu133plus2.db December 11, 2017 hgu133plus2accnum Map Manufacturer identifiers to Accession Numbers hgu133plus2accnum is an R object that contains mappings between a manufacturer s identifiers and manufacturers

More information

Ensembl Core API. EMBL European Bioinformatics Institute Wellcome Trust Genome Campus Hinxton, Cambridge, CB10 1SD, UK

Ensembl Core API. EMBL European Bioinformatics Institute Wellcome Trust Genome Campus Hinxton, Cambridge, CB10 1SD, UK Ensembl Core API EMBL European Bioinformatics Institute Wellcome Trust Genome Campus Hinxton, Cambridge, CB10 1SD, UK EBI is an Outstation of the European Molecular Biology Laboratory. Outline a. b. c.

More information

Creating and Using Genome Assemblies Tutorial

Creating and Using Genome Assemblies Tutorial Creating and Using Genome Assemblies Tutorial Release 8.1 Golden Helix, Inc. March 18, 2014 Contents 1. Create a Genome Assembly for Danio rerio 2 2. Building Annotation Sources 5 A. Creating a Reference

More information

Finding and Exporting Data. BioMart

Finding and Exporting Data. BioMart September 2017 Finding and Exporting Data Not sure what tool to use to find and export data? BioMart is used to retrieve data for complex queries, involving a few or many genes or even complete genomes.

More information

INTRODUCTION TO BIOINFORMATICS

INTRODUCTION TO BIOINFORMATICS Molecular Biology-2019 1 INTRODUCTION TO BIOINFORMATICS In this section, we want to provide a simple introduction to using the web site of the National Center for Biotechnology Information NCBI) to obtain

More information

HymenopteraMine Documentation

HymenopteraMine Documentation HymenopteraMine Documentation Release 1.0 Aditi Tayal, Deepak Unni, Colin Diesh, Chris Elsik, Darren Hagen Apr 06, 2017 Contents 1 Welcome to HymenopteraMine 3 1.1 Overview of HymenopteraMine.....................................

More information

BIOINFORMATICS A PRACTICAL GUIDE TO THE ANALYSIS OF GENES AND PROTEINS

BIOINFORMATICS A PRACTICAL GUIDE TO THE ANALYSIS OF GENES AND PROTEINS BIOINFORMATICS A PRACTICAL GUIDE TO THE ANALYSIS OF GENES AND PROTEINS EDITED BY Genome Technology Branch National Human Genome Research Institute National Institutes of Health Bethesda, Maryland B. F.

More information

INTRODUCTION TO BIOINFORMATICS

INTRODUCTION TO BIOINFORMATICS Molecular Biology-2017 1 INTRODUCTION TO BIOINFORMATICS In this section, we want to provide a simple introduction to using the web site of the National Center for Biotechnology Information NCBI) to obtain

More information

Exploring and Exploiting the Biological Maze. Presented By Vidyadhari Edupuganti Advisor Dr. Zoe Lacroix

Exploring and Exploiting the Biological Maze. Presented By Vidyadhari Edupuganti Advisor Dr. Zoe Lacroix Exploring and Exploiting the Biological Maze Presented By Vidyadhari Edupuganti Advisor Dr. Zoe Lacroix Motivation An abundance of biological data sources contain data about scientific entities, such as

More information

Discovery Net : A UK e-science Pilot Project for Grid-based Knowledge Discovery Services. Patrick Wendel Imperial College, London

Discovery Net : A UK e-science Pilot Project for Grid-based Knowledge Discovery Services. Patrick Wendel Imperial College, London Discovery Net : A UK e-science Pilot Project for Grid-based Knowledge Discovery Services Patrick Wendel Imperial College, London Data Mining and Exploration Middleware for Distributed and Grid Computing,

More information

An Introduction to Taverna Workflows Katy Wolstencroft University of Manchester

An Introduction to Taverna Workflows Katy Wolstencroft University of Manchester An Introduction to Taverna Workflows Katy Wolstencroft University of Manchester Download Taverna from http://taverna.sourceforge.net Windows or linux If you are using either a modern version of Windows

More information

Environmental Sample Classification E.S.C., Josh Katz and Kurt Zimmer

Environmental Sample Classification E.S.C., Josh Katz and Kurt Zimmer Environmental Sample Classification E.S.C., Josh Katz and Kurt Zimmer Goal: The task we were given for the bioinformatics capstone class was to construct an interface for the Pipas lab that integrated

More information

CACAO Training. Jim Hu and Suzi Aleksander Spring 2016

CACAO Training. Jim Hu and Suzi Aleksander Spring 2016 CACAO Training Jim Hu and Suzi Aleksander Spring 2016 1 What is CACAO? Community Assessment of Community Annotation with Ontologies (CACAO) Annotation of gene function Competition Within a class Between

More information

Master Thesis. Andreas Schlicker

Master Thesis. Andreas Schlicker Master Thesis A Global Approach to Comparative Genomics: Comparison of Functional Annotation over the Taxonomic Tree by Andreas Schlicker A Thesis Submitted to the Center for Bioinformatics of Saarland

More information

Using Biopython for Laboratory Analysis Pipelines

Using Biopython for Laboratory Analysis Pipelines Using Biopython for Laboratory Analysis Pipelines Brad Chapman 27 June 2003 What is Biopython? Official blurb The Biopython Project is an international association of developers of freely available Python

More information

Sarah Cohen-Boulakia. Université Paris Sud, LRI CNRS UMR

Sarah Cohen-Boulakia. Université Paris Sud, LRI CNRS UMR Sarah Cohen-Boulakia Université Paris Sud, LRI CNRS UMR 8623 cohen@lri.fr 01 69 15 32 16 https://www.lri.fr/~cohen/bigdata/biodata-ami2b.html Understanding Life Sciences Progress in multiple domains: biology,

More information

You will be re-directed to the following result page.

You will be re-directed to the following result page. ENCODE Element Browser Goal: to navigate the candidate DNA elements predicted by the ENCODE consortium, including gene expression, DNase I hypersensitive sites, TF binding sites, and candidate enhancers/promoters.

More information

Lecture 5 Advanced BLAST

Lecture 5 Advanced BLAST Introduction to Bioinformatics for Medical Research Gideon Greenspan gdg@cs.technion.ac.il Lecture 5 Advanced BLAST BLAST Recap Sequence Alignment Complexity and indexing BLASTN and BLASTP Basic parameters

More information

Introduction to Phylogenetics Week 2. Databases and Sequence Formats

Introduction to Phylogenetics Week 2. Databases and Sequence Formats Introduction to Phylogenetics Week 2 Databases and Sequence Formats I. Databases Crucial to bioinformatics The bigger the database, the more comparative research data Requires scientists to upload data

More information

Tutorial 4 BLAST Searching the CHO Genome

Tutorial 4 BLAST Searching the CHO Genome Tutorial 4 BLAST Searching the CHO Genome Accessing the CHO Genome BLAST Tool The CHO BLAST server can be accessed by clicking on the BLAST button on the home page or by selecting BLAST from the menu bar

More information

Software review. Biomolecular Interaction Network Database

Software review. Biomolecular Interaction Network Database Biomolecular Interaction Network Database Keywords: protein interactions, visualisation, biology data integration, web access Abstract This software review looks at the utility of the Biomolecular Interaction

More information

Sequence Alignment. GBIO0002 Archana Bhardwaj University of Liege

Sequence Alignment. GBIO0002 Archana Bhardwaj University of Liege Sequence Alignment GBIO0002 Archana Bhardwaj University of Liege 1 What is Sequence Alignment? A sequence alignment is a way of arranging the sequences of DNA, RNA, or protein to identify regions of similarity.

More information

Chapter 30 Emerging Database Technologies and Applications

Chapter 30 Emerging Database Technologies and Applications Chapter 30 Emerging Database Technologies and Applications Chapter Outline 1 Mobile Databases 1.1 Mobile Computing Architecture 1.2 Characteristics of Mobile Environments 1.3 Data Management Issues 1.4

More information

hgug4845a.db September 22, 2014 Map Manufacturer identifiers to Accession Numbers

hgug4845a.db September 22, 2014 Map Manufacturer identifiers to Accession Numbers hgug4845a.db September 22, 2014 hgug4845aaccnum Map Manufacturer identifiers to Accession Numbers hgug4845aaccnum is an R object that contains mappings between a manufacturer s identifiers and manufacturers

More information

Exercises. Biological Data Analysis Using InterMine workshop exercises with answers

Exercises. Biological Data Analysis Using InterMine workshop exercises with answers Exercises Biological Data Analysis Using InterMine workshop exercises with answers Exercise1: Faceted Search Use HumanMine for this exercise 1. Search for one or more of the following using the keyword

More information

Using many concepts related to bioinformatics, an application was created to

Using many concepts related to bioinformatics, an application was created to Patrick Graves Bioinformatics Thursday, April 26, 2007 1 - ABSTRACT Using many concepts related to bioinformatics, an application was created to visually display EST s. Each EST was displayed in the correct

More information

Record Count per latest data load (version) Pathways and sub pathways Total: 1600; NCI-Curated: 201; Reactome: 1399 Interactions 1,024,802

Record Count per latest data load (version) Pathways and sub pathways Total: 1600; NCI-Curated: 201; Reactome: 1399 Interactions 1,024,802 PathwaysBrowser Web Application Documentation Introduction Cancer is the uncontrolled growth of abnormal cells in the body. For cancer to occur multiple signaling mechanisms must break down to allow the

More information

Facilitating Semantic Alignment of EBI Resources

Facilitating Semantic Alignment of EBI Resources Facilitating Semantic Alignment of EBI Resources 17 th March, 2017 Tony Burdett Technical Co-ordinator Samples, Phenotypes and Ontologies Team www.ebi.ac.uk What is EMBL-EBI? Europe s home for biological

More information

Dr. Gabriela Salinas Dr. Orr Shomroni Kaamini Rhaithata

Dr. Gabriela Salinas Dr. Orr Shomroni Kaamini Rhaithata Analysis of RNA sequencing data sets using the Galaxy environment Dr. Gabriela Salinas Dr. Orr Shomroni Kaamini Rhaithata Microarray and Deep-sequencing core facility 30.10.2017 RNA-seq workflow I Hypothesis

More information

Geneious 2.0. Biomatters Ltd

Geneious 2.0. Biomatters Ltd Geneious 2.0 Biomatters Ltd August 2, 2006 2 Contents 1 Getting Started 5 1.1 Downloading & Installing Geneious.......................... 5 1.2 Using Geneious for the first time............................

More information

Human Disease Models Tutorial

Human Disease Models Tutorial Mouse Genome Informatics www.informatics.jax.org The fundamental mission of the Mouse Genome Informatics resource is to facilitate the use of mouse as a model system for understanding human biology and

More information

The ELIXIR of Linked Data

The ELIXIR of Linked Data The ELIXIR of Linked Data Professor Carole Goble (UK node) Barend Mons (NL node), Helen Parkinson (EMBL-EBI node) The Interoperability Services Backbone Team European Life Sciences Infrastructure for Biological

More information

The GenAlg Project: Developing a New Integrating Data Model, Language, and Tool for Managing and Querying Genomic Information

The GenAlg Project: Developing a New Integrating Data Model, Language, and Tool for Managing and Querying Genomic Information The GenAlg Project: Developing a New Integrating Data Model, Language, and Tool for Managing and Querying Genomic Information Joachim Hammer and Markus Schneider Department of Computer and Information

More information

User Manual. Ver. 3.0 March 19, 2012

User Manual. Ver. 3.0 March 19, 2012 User Manual Ver. 3.0 March 19, 2012 Table of Contents 1. Introduction... 2 1.1 Rationale... 2 1.2 Software Work-Flow... 3 1.3 New in GenomeGems 3.0... 4 2. Software Description... 5 2.1 Key Features...

More information

Proceedings of the Postgraduate Annual Research Seminar

Proceedings of the Postgraduate Annual Research Seminar Proceedings of the Postgraduate Annual Research Seminar 2006 202 Database Integration Approaches for Heterogeneous Biological Data Sources: An overview Iskandar Ishak, Naomie Salim Faculty of Computer

More information

Protein Data Bank Japan

Protein Data Bank Japan Protein Data Bank Japan http://www.pdbj.org/ PDBj Today gene information for many species is just at the point of being revealed. To make use of this information, it is necessary to look at the proteins

More information

Goal-oriented Schema in Biological Database Design

Goal-oriented Schema in Biological Database Design Goal-oriented Schema in Biological Database Design Ping Chen Department of Computer Science University of Helsinki Helsinki, Finland 00014 EMAIL: pchen@cs.helsinki.fi Abstract In this paper, I reviewed

More information

Relational Databases for Biologists: Efficiently Managing and Manipulating Your Data

Relational Databases for Biologists: Efficiently Managing and Manipulating Your Data Relational Databases for Biologists: Efficiently Managing and Manipulating Your Data Session 3 Building and modifying a database with SQL George Bell, Ph.D. WIBR Bioinformatics and Research Computing Session

More information

Wilson Leung 05/27/2008 A Simple Introduction to NCBI BLAST

Wilson Leung 05/27/2008 A Simple Introduction to NCBI BLAST A Simple Introduction to NCBI BLAST Prerequisites: Detecting and Interpreting Genetic Homology: Lecture Notes on Alignment Resources: The BLAST web server is available at http://www.ncbi.nih.gov/blast/

More information

A Protocol for Maintaining Multidatabase Referential Integrity. Articial Intelligence Center. SRI International, EJ229

A Protocol for Maintaining Multidatabase Referential Integrity. Articial Intelligence Center. SRI International, EJ229 A Protocol for Maintaining Multidatabase Referential Integrity Peter D. Karp Articial Intelligence Center SRI International, EJ229 333 Ravenswood Ave. Menlo Park, CA 94025 voice: 415-859-6375 fax: 415-859-3735

More information

Geneious 5.6 Quickstart Manual. Biomatters Ltd

Geneious 5.6 Quickstart Manual. Biomatters Ltd Geneious 5.6 Quickstart Manual Biomatters Ltd October 15, 2012 2 Introduction This quickstart manual will guide you through the features of Geneious 5.6 s interface and help you orient yourself. You should

More information

Blast2GO PRO Plugin for Geneious User Manual

Blast2GO PRO Plugin for Geneious User Manual Blast2GO PRO Plugin for Geneious User Manual Geneious 8.0 Version 1.0 October 2015 BioBam Bioinformatics S.L. Valencia, Spain Contents Introduction 2 1.1 Blast2GO methodology................................

More information

Biosphere: the interoperation of web services in microarray cluster analysis

Biosphere: the interoperation of web services in microarray cluster analysis Biosphere: the interoperation of web services in microarray cluster analysis Kei-Hoi Cheung 1,2,*, Remko de Knikker 1, Youjun Guo 1, Guoneng Zhong 1, Janet Hager 3,4, Kevin Y. Yip 5, Albert K.H. Kwan 5,

More information

Down with Species-Specific Database Projects, Up with Data Services

Down with Species-Specific Database Projects, Up with Data Services 1 Down with Species-Specific Database Projects, Up with Data Services Lincoln D. Stein, Cold Spring Harbor Laboratory This whitepaper begins with an illustration drawn from a database that has nothing

More information

BLAST Exercise 2: Using mrna and EST Evidence in Annotation Adapted by W. Leung and SCR Elgin from Annotation Using mrna and ESTs by Dr. J.

BLAST Exercise 2: Using mrna and EST Evidence in Annotation Adapted by W. Leung and SCR Elgin from Annotation Using mrna and ESTs by Dr. J. BLAST Exercise 2: Using mrna and EST Evidence in Annotation Adapted by W. Leung and SCR Elgin from Annotation Using mrna and ESTs by Dr. J. Buhler Prerequisites: BLAST Exercise: Detecting and Interpreting

More information

UniProt - The Universal Protein Resource

UniProt - The Universal Protein Resource UniProt - The Universal Protein Resource Claire O Donovan Pre-UniProt Swiss-Prot: created in July 1986; since 1987, a collaboration of the SIB and the EMBL/EBI; TrEMBL: created at the EBI in November 1996

More information

CLC Server. End User USER MANUAL

CLC Server. End User USER MANUAL CLC Server End User USER MANUAL Manual for CLC Server 10.0.1 Windows, macos and Linux March 8, 2018 This software is for research purposes only. QIAGEN Aarhus Silkeborgvej 2 Prismet DK-8000 Aarhus C Denmark

More information

SEEK User Manual. Introduction

SEEK User Manual. Introduction SEEK User Manual Introduction SEEK is a computational gene co-expression search engine. It utilizes a vast human gene expression compendium to deliver fast, integrative, cross-platform co-expression analyses.

More information

Massive Automatic Functional Annotation MAFA

Massive Automatic Functional Annotation MAFA Massive Automatic Functional Annotation MAFA José Nelson Perez-Castillo 1, Cristian Alejandro Rojas-Quintero 2, Nelson Enrique Vera-Parra 3 1 GICOGE Research Group - Director Center for Scientific Research

More information