RDF Workshop. ChEMBL Examples and Tutorial. Mark Davies. ChEMBL Group, Technical Lead 30/04/2014

Size: px
Start display at page:

Download "RDF Workshop. ChEMBL Examples and Tutorial. Mark Davies. ChEMBL Group, Technical Lead 30/04/2014"

Transcription

1 RDF Workshop ChEMBL Examples and Tutorial Mark Davies ChEMBL Group, Technical Lead 30/04/2014

2 Query 1 Find All Small Molecules PREFIX cco: < SELECT?molecule WHERE {?molecule a cco:smallmolecule. }

3 Query 2 - Find all FDA Approved Drugs PREFIX cco: < SELECT?molecule WHERE {?molecule a cco:smallmolecule.?molecule cco:highestdevelopmentphase?phase. FILTER(?phase = 4 ) }

4 Query 3 Find GPCR Bioactivity Data Find all molecules which bind GPCRs PREFIX cco: < PREFIX cpc: < SELECT?molecule?activity?assay?target WHERE {?molecule a cco:smallmolecule.?smol cco:hasactivity?activity.?activity cco:hasassay?assay.?assay cco:hastarget?target.?target cco:hasproteinclassification cpc:chembl_pc_1020. }

5 ChEMBL Protein Classification

6 Query 4 Find Secreted Proteins PREFIX rdfs: < PREFIX cco: < PREFIX sio: < PREFIX skos: < SELECT?uniprot?target?target_name?target_type WHERE { {# Select targets - In this example Secreted Proteins(CHEMBL_PC_3) < cco:hastargetdescendant?target.?target rdfs:label?target_name ; cco:hastargetcomponent?target_component ; cco:organismname?organism ; cco:targettype?target_type.?target_component skos:exactmatch?uniprot.?uniprot a cco:uniprotref. } }

7 Query 5 Secreted Protein Approved Drugs PREFIX rdfs: < PREFIX cco: < PREFIX sio: < PREFIX skos: < SELECT?uniprot?target?target_name?target_type (count(distinct?molecule) as?drug_binding_count) WHERE { {# Select approved drug molecules which bind targets?target cco:hasassay?assay.?assay cco:hasactivity?activity.?activity cco:hasmolecule?molecule ; cco:pchembl?molecule_pchembl.?molecule cco:highestdevelopmentphase?molecule_phase. FILTER(?molecule_pchembl > 6 ) FILTER(?molecule_phase = 4 ) } {# Select some targets - In this example GPCRs (CHEMBL_PC_1020) < cco:hastargetdescendant?target.?target rdfs:label?target_name ; cco:hastargetcomponent?target_component ; cco:organismname?organism ; cco:targettype?target_type.?target_component skos:exactmatch?uniprot.?uniprot a cco:uniprotref. } } group by?uniprot?target?target_name?target_type order by desc(count(distinct?molecule))

8 Query 6 - Secreted Protein Drug-Like Mols PREFIX rdfs: < PREFIX cco: < PREFIX sio: < PREFIX skos: < SELECT?uniprot?target?target_name?target_type (count(distinct?molecule) as?drug_binding_count) WHERE { {# Select approved drug molecules which bind targets?target cco:hasassay?assay.?assay cco:hasactivity?activity.?activity cco:hasmolecule?molecule ; cco:pchembl?molecule_pchembl.?molecule cco:highestdevelopmentphase?molecule_phase. FILTER(?molecule_pchembl > 6 ) FILTER(?molecule_phase = 4 ) } {# Select some targets - In this example secreted molecules (CHEMBL_PC_3) < cco:hastargetdescendant?target.?target rdfs:label?target_name ; cco:hastargetcomponent?target_component ; cco:organismname?organism ; cco:targettype?target_type.?target_component skos:exactmatch?uniprot.?uniprot a cco:uniprotref. } } group by?uniprot?target?target_name?target_type order by desc(count(distinct?molecule))

9 Reactome Pathways - Apoptosis TNF Signaling =

10 Query 7 Reactome Proteins Running a federated query against Reactome SPARQL endpoint PREFIX dc: < PREFIX biopax3: < PREFIX rdfs: < PREFIX foaf: < PREFIX owl: < PREFIX xsd: < PREFIX rdf: < PREFIX skos: < PREFIX dcterms: < SELECT DISTINCT?pathwayname?uniprot WHERE # Pull back proteins from Reactome Endpoint involved in TNF Signaling (REACT_1432.5) { SERVICE < { { < rdf:type biopax3:pathway ; biopax3:pathwaycomponent?reaction ; biopax3:displayname?pathwayname.?reaction rdf:type biopax3:biochemicalreaction { {?reaction?rel?protein } UNION {?reaction?rel?complex.?complex rdf:type biopax3:complex.?complex?comp?protein } }?protein rdf:type biopax3:protein.?protein biopax3:entityreference?uniprot } } }

11 Query 8 - Reactome Proteins + Drug-Like Mols PREFIX rdfs: < PREFIX cco: < PREFIX sio: < PREFIX skos: < PREFIX biopax3: < SELECT?pathwayname?uniprot?target?target_name?molecule { {# ChEMBL Block 1?molecule cco:highestdevelopmentphase?molecule_phase.?activity cco:hasmolecule?molecule.?activity cco:pchembl?pchembl.?assay cco:hasactivity?activity. } # Pull back proteins from Reactome Endpoint involved in TNF Signaling (REACT_1432.5) SERVICE < { { < a biopax3:pathway ; biopax3:pathwaycomponent?reaction ; biopax3:displayname?pathwayname.?reaction a biopax3:biochemicalreaction { {?reaction?rel?protein } UNION {?reaction?rel?complex.?complex a biopax3:complex.?complex?comp?protein } }?protein a biopax3:protein.?protein biopax3:entityreference?uniprot } } {# ChEMBL Block 2?target_component skos:exactmatch?uniprot.?target_component cco:hastarget?target.?target cco:hasassay?assay ; rdfs:label?target_name. } # Work around to get RO5 Value BIND(IRI(CONCAT(?molecule,'#num_ro5_violations')) AS?ro5_violations_iri)?ro5_violations_iri sio:sio_000300?ro5_violations_value. FILTER(?molecule_phase < 4 ) FILTER(?pChembl > 6 ) FILTER(?ro5_violations_value = 0 ) }

12 Revisiting Reactome Identifying the proteins in the pathway shown which interact with drug-like molecules Caspase-8 34 TNF-alpha 12 TNF-R1 7 RIPK1

13 Query 9 Select the Caspase-8 Molecules PREFIX rdfs: < PREFIX cco: < PREFIX sio: < PREFIX skos: < PREFIX biopax3: < SELECT DISTINCT?molecule?molecule_name { {?molecule cco:highestdevelopmentphase?molecule_phase ; sio:sio_000008?molecule_ro5 ; rdfs:label?molecule_name.?molecule_ro5 a sio:cheminf_ ; sio:sio_000300?molecule_ro5_val.?activity cco:hasmolecule?molecule.?activity cco:pchembl?pchembl.?assay cco:hasactivity?activity. < cco:hasassay?assay ; } FILTER(?molecule_phase < 4 ) FILTER(?pChembl > 6 ) FILTER(?molecule_ro5_val = 0 ) }

14 Questions 1. How many Assays are in ChEMBL_18 RDF? (Hint: use type Assay) 2. How many Activities are in ChEMBL_18 RDF? (Hint: use type Activity) 3. How many human kinase targets are there in ChEMBL_18 RDF? (Hint: Look under Enzyme classification to find Kinases)

15 Questions 4. Find all drug-like molecules in the ChEMBL_18 RDF? How many molecules have been returned? Explain your search criteria? 5. Choose a protein target which is bound by a molecule from list above and find the following information: Protein name Protein classification Organism name

16 Answers Using Rule of Five violations equal zero 5. Selected ChEMBL Molecule CHEMBL22 and an example query could be: Click on target link to get Protein Classification details

Geospatial Semantics for Topographic Data

Geospatial Semantics for Topographic Data Geospatial Semantics for Topographic Data E. Lynn Usery U.S. Geological Survey Abstract. Whereas The National Map of the U.S. Geological Survey is based on data models and processes of geographic information

More information

Unit 4: SPARQL1.0 in Detail & SPARQL s formal semantics. Axel Polleres. Siemens AG Österreich All rights reserved.

Unit 4: SPARQL1.0 in Detail & SPARQL s formal semantics. Axel Polleres. Siemens AG Österreich All rights reserved. Unit 4: SPARQL1.0 in Detail & SPARQL s formal semantics. Siemens AG Österreich. 2013. All rights reserved. Recall from Lecture 1/Assignment 1 Lots of RDF data already published, e.g. about Tim Berners-Lee

More information

Chemical Safety Summary in PubChem

Chemical Safety Summary in PubChem (towards the) Seman+c annota+on of the Laboratory Chemical Safety Summary in PubChem Gang Fu 1, Jian Zhang 1, Evan Bolton 1, Jeremy Frey 2, Stuart Chalk 3, Mark Borkum 4, Leah McEwen 5 1 Na+onal Center

More information

Applying the Semantic Web to Computational Chemistry

Applying the Semantic Web to Computational Chemistry Applying the Semantic Web to Computational Chemistry Neil S. Ostlund, Mirek Sopek Chemical Semantics Inc., Gainesville, Florida, USA {ostlund, sopek}@chemicalsemantics.com Abstract. Chemical Semantics

More information

GeomRDF : A Geodata Converter with a Fine-Grained Structured Representation of Geometry in the Web

GeomRDF : A Geodata Converter with a Fine-Grained Structured Representation of Geometry in the Web GeomRDF : A Geodata Converter with a Fine-Grained Structured Representation of Geometry in the Web Fayçal Hamdi 1 Nathalie Abadie 2 Bénédicte Bucher 2 Abdelfettah Feliachi 2 1 ISID TEAM, CEDRIC Lab Conservatoire

More information

Open PHACTS Explorer: Compound by Name

Open PHACTS Explorer: Compound by Name Open PHACTS Explorer: Compound by Name This document is a tutorial for obtaining compound information in Open PHACTS Explorer (explorer.openphacts.org). Features: One-click access to integrated compound

More information

23 april th nordic conference on scholarly publishing lund, sweden

23 april th nordic conference on scholarly publishing lund, sweden 23 april 2008 4th nordic conference on scholarly publishing lund, sweden river blindness river blindness The drug Mectazin has been used effectively, but has to be taken over 15 years and does not kill

More information

RULE-BASED REASONING FOR SYSTEM DYNAMICS IN CELL SYSTEMS

RULE-BASED REASONING FOR SYSTEM DYNAMICS IN CELL SYSTEMS 25 RULE-BASED REASONING FOR SYSTEM DYNAMICS IN CELL SYSTEMS EUNA JEONG MASAO NAGASAKI SATORU MIYANO eajeong@ims.u-tokyo.ac.jp masao@ims.u-tokyo.ac.jp miyano@ims.u-tokyo.ac.jp Human Genome Center, Institute

More information

Linked Open Data. and Australia s GLAMs

Linked Open Data. and Australia s GLAMs Linked Open Data and Australia s GLAMs Outline Linked open data Phases GLAM LOD initiatives assessment experimentation production evaluation BNF LD4L Europeana Summary Odyssey #LODyssey https://storify.com/conal_tuohy/lodyssey

More information

Semantic Web SPARQL. Gerd Gröner, Matthias Thimm. July 16,

Semantic Web SPARQL. Gerd Gröner, Matthias Thimm. July 16, Semantic Web SPARQL Gerd Gröner, Matthias Thimm {groener,thimm}@uni-koblenz.de Institute for Web Science and Technologies (WeST) University of Koblenz-Landau July 16, 2013 Gerd Gröner, Matthias Thimm Semantic

More information

Chemical Data Retrieval and Management

Chemical Data Retrieval and Management Chemical Data Retrieval and Management ChEMBL, ChEBI, and the Chemistry Development Kit Stephan A. Beisken What is EMBL-EBI? Part of the European Molecular Biology Laboratory International, non-profit

More information

Resource Description Framework (RDF) A basis for knowledge representation on the Web

Resource Description Framework (RDF) A basis for knowledge representation on the Web Resource Description Framework (RDF) A basis for knowledge representation on the Web Simple language to capture assertions (as statements) Captures elements of knowledge about a resource Facilitates incremental

More information

GeoQuery Tool to Pose Spatial Queries over the Web

GeoQuery Tool to Pose Spatial Queries over the Web GeoQuery Tool to Pose Spatial Queries over the Web http://geoquery.cs.jmu.edu/geoquery/ Nancy Wiegand wiegand@cs.wisc.edu Space Science and Engineering Center University of Wisconsin Madison Geospatial

More information

Francesco Beretta (CNRS UMR5190 LARHRA Université de Lyon) The symogih.org project and TEI : encoding structured historical data in XML texts

Francesco Beretta (CNRS UMR5190 LARHRA Université de Lyon) The symogih.org project and TEI : encoding structured historical data in XML texts Text Encoding Initiative Conference and members' meeting 2015 Lyon, 30 October 2015 Francesco Beretta (CNRS UMR5190 LARHRA Université de Lyon) The symogih.org project and TEI : encoding structured historical

More information

Biology Slide 1 of 34

Biology Slide 1 of 34 Biology 1 of 34 2 4 Chemical Reactions and Enzymes 2 of 34 2 4 Chemical Reactions and Enzymes Chemical Reactions Chemical Reactions A chemical reaction is a process that changes one set of chemicals into

More information

Geospatial Semantics to Advance Discoveries in GIScience

Geospatial Semantics to Advance Discoveries in GIScience Applying Cyberinfrastructure and Geospatial Semantics to Advance Discoveries in GIScience Wenwen Li Center for Spatial Studies & Department of Geography University of California, Santa Barbara 04-16-2012

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism OECD QSAR Toolbox v.4.1 Tutorial illustrating new options for grouping with metabolism Outlook Background Objectives Specific Aims The exercise Workflow 2 Background Grouping with metabolism is a procedure

More information

Geospatial Dataset Curation through a Location-based Game

Geospatial Dataset Curation through a Location-based Game Semantic Web 0 (2013) 1 1 IOS Press Geospatial Dataset Curation through a Location-based Game Description of the Urbanopoly Linked Dataset Editor(s): Editors TBC Solicited review(s): Solicited Reviewers

More information

Development of Pharmacophore Model for Indeno[1,2-b]indoles as Human Protein Kinase CK2 Inhibitors and Database Mining

Development of Pharmacophore Model for Indeno[1,2-b]indoles as Human Protein Kinase CK2 Inhibitors and Database Mining Development of Pharmacophore Model for Indeno[1,2-b]indoles as Human Protein Kinase CK2 Inhibitors and Database Mining Samer Haidar 1, Zouhair Bouaziz 2, Christelle Marminon 2, Tiomo Laitinen 3, Anti Poso

More information

Publishing Skopje Air Quality Data as Linked Data

Publishing Skopje Air Quality Data as Linked Data Publishing Skopje Air Quality Data as Linked Data Kostadin Mishev, Angjel Kjosevski, Nikola Kalemdzhievski, Nikola Koteli, Milos Jovanovik, Kosta Mitreski, Dimitar Trajanov Faculty of Computer Science

More information

From Changes to Dynamics: Dynamics Analysis of Linked Open Data Sources

From Changes to Dynamics: Dynamics Analysis of Linked Open Data Sources From Changes to Dynamics: Dynamics Analysis of Linked Open Data Sources Renata Dividino, Thomas Gottron, Ansgar Scherp 2, and Gerd Gröner 3 WeST Institute for Web Science and Technologies University of

More information

Semantic GIS GeoSPARQL

Semantic GIS GeoSPARQL Semantic GIS GeoSPARQL Michal Med michal.med@fel.cvut.cz December 20, 2018 Michal Med (michal.med@fel.cvut.cz) Semantic GIS GeoSPARQL December 20, 2018 1 / 47 Outline 1 WTF is GIS?? 2 Usage of GIS 3 Linked

More information

Emerging patterns mining and automated detection of contrasting chemical features

Emerging patterns mining and automated detection of contrasting chemical features Emerging patterns mining and automated detection of contrasting chemical features Alban Lepailleur Centre d Etudes et de Recherche sur le Médicament de Normandie (CERMN) UNICAEN EA 4258 - FR CNRS 3038

More information

ChEMBL Tech Track Session

ChEMBL Tech Track Session ChEMBL Tech Track Session ELIXIR Innovation and SME forum Mark Davies Technical Lead ChEMBL Group Outline Background ChEMBL Data in more detail ChEMBL Database Schema ChEMBL Web Services ChEMBL Web Portals

More information

Autodock tutorial VINA with UCSF Chimera

Autodock tutorial VINA with UCSF Chimera Autodock tutorial VINA with UCSF Chimera José R. Valverde CNB/CSIC jrvalverde@cnb.csic.es José R. Valverde, 2014 CC-BY-NC-SA Loading the receptor Open UCSF Chimera and then load the protein: File Open

More information

SPARQL Rewriting for Query Mediation over Mapped Ontologies

SPARQL Rewriting for Query Mediation over Mapped Ontologies SPARQL Rewriting for Query Mediation over Mapped Ontologies Konstantinos Makris*, Nektarios Gioldasis*, Nikos Bikakis**, Stavros Christodoulakis* *Laboratory of Distributed Multimedia Information Systems

More information

Student Exploration: Collision Theory

Student Exploration: Collision Theory Name: Date: Student Exploration: Collision Theory Vocabulary: activated complex, catalyst, chemical reaction, concentration, enzyme, half-life, molecule, product, reactant, surface area Prior Knowledge

More information

A Database of human biological pathways

A Database of human biological pathways A Database of human biological pathways Steve Jupe - sjupe@ebi.ac.uk 1 Rationale Journal information Nature 407(6805):770-6.The Biochemistry of Apoptosis. Caspase-8 is the key initiator caspase in the

More information

LIBRARY DESIGN FOR COLLABORATIVE DRUG DISCOVERY: EXPANDING DRUGGABLE CHEMOGENOMIC SPACE

LIBRARY DESIGN FOR COLLABORATIVE DRUG DISCOVERY: EXPANDING DRUGGABLE CHEMOGENOMIC SPACE 5 th /June/2018@British Embassy in Tokyo LIBRARY DESIGN FOR COLLABORATIVE DRUG DISCOVERY: EXPANDING DRUGGABLE CHEMOGENOMIC SPACE Kazuyoshi Ikeda, Ph.D. Keio University SELF-INTRODUCTION Keio University,

More information

I4-DX2 RDF Querying in Xcerpt

I4-DX2 RDF Querying in Xcerpt I4-DX2 RDF Querying in Xcerpt Project title: Reasoning on the Web with Rules and Semantics Project acronym: REWERSE Project number: IST-2004-506779 Project instrument: EU FP6 Network of Excellence (NoE)

More information

A Protein Ontology from Large-scale Textmining?

A Protein Ontology from Large-scale Textmining? A Protein Ontology from Large-scale Textmining? Protege-Workshop Manchester, 07-07-2003 Kai Kumpf, Juliane Fluck and Martin Hofmann Instructive mistakes: a narrative Aim: Protein ontology that supports

More information

Using Web Technologies for Integrative Drug Discovery

Using Web Technologies for Integrative Drug Discovery Using Web Technologies for Integrative Drug Discovery Qian Zhu 1 Sashikiran Challa 1 Yuying Sun 3 Michael S. Lajiness 2 David J. Wild 1 Ying Ding 3 1 School of Informatics and Computing, Indiana University,

More information

A. Incorrect! The Cell Cycle contains 4 distinct phases: (1) G 1, (2) S Phase, (3) G 2 and (4) M Phase.

A. Incorrect! The Cell Cycle contains 4 distinct phases: (1) G 1, (2) S Phase, (3) G 2 and (4) M Phase. Molecular Cell Biology - Problem Drill 21: Cell Cycle and Cell Death Question No. 1 of 10 1. Which of the following statements about the cell cycle is correct? Question #1 (A) The Cell Cycle contains 3

More information

Proteomics & Bioinformatics Part II. David Wishart 3-41 Athabasca Hall

Proteomics & Bioinformatics Part II. David Wishart 3-41 Athabasca Hall Proteomics & Bioinformatics Part II David Wishart 3-41 Athabasca Hall david.wishart@ualberta.ca 3 Kinds of Proteomics* Structural Proteomics High throughput X-ray Crystallography/Modelling High throughput

More information

Publishing Census as Linked Open Data. A Case Study

Publishing Census as Linked Open Data. A Case Study Publishing Census as Linked Open Data. A Case Study Irene Petrou George Papastefanatos Theodore Dalamagas Institute for the Management of Information Systems RC Athena 2nd International Workshop on Open

More information

Problem Set 5 Question 1

Problem Set 5 Question 1 2.32 Problem Set 5 Question As discussed in class, drug discovery often involves screening large libraries of small molecules to identify those that have favorable interactions with a certain druggable

More information

SPARQL Algebra Sebastian Rudolph

SPARQL Algebra Sebastian Rudolph FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES SPARQL Algebra Sebastian Rudolph The SPARQL Query Language TU Dresden Foundations of Semantic Web Technologies slide 2 of 56 The SPARQL Query Language TU Dresden

More information

Networks & pathways. Hedi Peterson MTAT Bioinformatics

Networks & pathways. Hedi Peterson MTAT Bioinformatics Networks & pathways Hedi Peterson (peterson@quretec.com) MTAT.03.239 Bioinformatics 03.11.2010 Networks are graphs Nodes Edges Edges Directed, undirected, weighted Nodes Genes Proteins Metabolites Enzymes

More information

PDBe TUTORIAL. PDBePISA (Protein Interfaces, Surfaces and Assemblies)

PDBe TUTORIAL. PDBePISA (Protein Interfaces, Surfaces and Assemblies) PDBe TUTORIAL PDBePISA (Protein Interfaces, Surfaces and Assemblies) http://pdbe.org/pisa/ This tutorial introduces the PDBePISA (PISA for short) service, which is a webbased interactive tool offered by

More information

Regulation and signaling. Overview. Control of gene expression. Cells need to regulate the amounts of different proteins they express, depending on

Regulation and signaling. Overview. Control of gene expression. Cells need to regulate the amounts of different proteins they express, depending on Regulation and signaling Overview Cells need to regulate the amounts of different proteins they express, depending on cell development (skin vs liver cell) cell stage environmental conditions (food, temperature,

More information

Dock Ligands from a 2D Molecule Sketch

Dock Ligands from a 2D Molecule Sketch Dock Ligands from a 2D Molecule Sketch March 31, 2016 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com

More information

Smart Points of Interest: Big, Linked and Harmonized Spatial Data

Smart Points of Interest: Big, Linked and Harmonized Spatial Data Smart Points of Interest: Big, Linked and Harmonized Spatial Data Otakar Cerba and Tomas Mildorf ABSTRACT: The current trends in geomatics and geoinformatics are very often connected with three words big,

More information

2 4 Chemical Reactions and Enzymes Slide 1 of 34

2 4 Chemical Reactions and Enzymes Slide 1 of 34 2 4 Chemical Reactions and Enzymes 1 of 34 Chemical Reactions Chemical Reactions A chemical reaction is a process that changes one set of chemicals into another set of chemicals. Some chemical reactions

More information

Examples: DOLCE and BFO in DL and Manchester syntax

Examples: DOLCE and BFO in DL and Manchester syntax Contents Examples: DOLCE and BFO in DL and Manchester syntax Maria Keet November 14, 2009 1 Disclaimer and background information 1 2 DOLCE-Lite in DL 4 3 DOLCE-Lite in Manchester syntax 11 4 BFO-1.1 in

More information

part III Systems Biology, 25 October 2013

part III Systems Biology, 25 October 2013 Biochemical pathways What is a pathway Wikipedia (October 14th 2013): In biochemistry, metabolic pathways are series of chemical reactions occurring within a cell. In each pathway, a principal chemical

More information

Computational chemical biology to address non-traditional drug targets. John Karanicolas

Computational chemical biology to address non-traditional drug targets. John Karanicolas Computational chemical biology to address non-traditional drug targets John Karanicolas Our computational toolbox Structure-based approaches Ligand-based approaches Detailed MD simulations 2D fingerprints

More information

Permanent Link:

Permanent Link: Citation: Sidhu, Amandeep and Dillon, Tharam S. and Chang, Elizabeth and Sidhu, Baldev S. 2005. : Protein ontology development using OWL, in Schneider, P. and Grau, B.C. and Horrocks, I. and Parsia, B.

More information

Minireview: Molecular Structure and Dynamics of Drug Targets

Minireview: Molecular Structure and Dynamics of Drug Targets Prague Medical Report / Vol. 109 (2008) No. 2 3, p. 107 112 107) Minireview: Molecular Structure and Dynamics of Drug Targets Dahl S. G., Sylte I. Department of Pharmacology, Institute of Medical Biology,

More information

Proteome-wide High Throughput Cell Based Assay for Apoptotic Genes

Proteome-wide High Throughput Cell Based Assay for Apoptotic Genes John Kenten, Doug Woods, Pankaj Oberoi, Laura Schaefer, Jonathan Reeves, Hans A. Biebuyck and Jacob N. Wohlstadter 9238 Gaither Road, Gaithersburg, MD 2877. Phone: 24.631.2522 Fax: 24.632.2219. Website:

More information

Dongyue Cao,, Junmei Wang,, Rui Zhou, Youyong Li, Huidong Yu, and Tingjun Hou*,, INTRODUCTION

Dongyue Cao,, Junmei Wang,, Rui Zhou, Youyong Li, Huidong Yu, and Tingjun Hou*,, INTRODUCTION pubs.acs.org/jcim ADMET Evaluation in Drug Discovery. 11. PharmacoKinetics Knowledge Base (PKKB): A Comprehensive Database of Pharmacokinetic and Toxic Properties for Drugs Dongyue Cao,, Junmei Wang,,

More information

Can we predict good drugs?

Can we predict good drugs? Literature Seminar (M2) Can we predict good drugs? the application of ~ big database to R&D of drugs ~ Nature 2012, 486, 361. 10 th November 2012 (Sat.) Takuya Matsumoto Introduction 1 Combined FDA-approved

More information

Outline Introduction Background Related Rl dw Works Proposed Approach Experiments and Results Conclusion

Outline Introduction Background Related Rl dw Works Proposed Approach Experiments and Results Conclusion A Semantic Approach to Detecting Maritime Anomalous Situations ti José M Parente de Oliveira Paulo Augusto Elias Emilia Colonese Carrard Computer Science Department Aeronautics Institute of Technology,

More information

Cell-Cell Communication in Development

Cell-Cell Communication in Development Biology 4361 - Developmental Biology Cell-Cell Communication in Development October 2, 2007 Cell-Cell Communication - Topics Induction and competence Paracrine factors inducer molecules Signal transduction

More information

Status Finland Eero Hietanen NLS-FI SDI.Next: Linked Spatial Data in Europe 12th of March 2019

Status Finland Eero Hietanen NLS-FI SDI.Next: Linked Spatial Data in Europe 12th of March 2019 Open European Location Services Title Speaker Event Date Status Finland Eero Hietanen NLS-FI SDI.Next: Linked Spatial Data in Europe 12th of March 2019 #OpenELS #OpenELS Content 1. National Geospatial

More information

OGC Environmental Data Interoperability Experiments

OGC Environmental Data Interoperability Experiments December 17 OGC Environmental Data IEs PAGE 1 OGC Environmental Data Interoperability Experiments Alistair Ritchie Research Data Architect/Engineer Manaaki Whenua Landcare Research December 17 MANAAKI

More information

Peptide-derived Inhibitors of Protein-Protein Interactions

Peptide-derived Inhibitors of Protein-Protein Interactions Peptide-derived Inhibitors of Protein-Protein Interactions Sven Hennig Department of Chemistry and Pharmaceutical Sciences Vrije Universiteit Amsterdam 1 Biomolecular recognitions Classification via interaction

More information

Estimating query rewriting quality over LOD

Estimating query rewriting quality over LOD Semantic Web 1 (2016) 1 5 1 IOS Press Estimating query rewriting quality over LOD Editor(s): Name Surname, University, Country Solicited review(s): Name Surname, University, Country Open review(s): Name

More information

Lecture 27. Transition States and Enzyme Catalysis

Lecture 27. Transition States and Enzyme Catalysis Lecture 27 Transition States and Enzyme Catalysis Reading for Today: Chapter 15 sections B and C Chapter 16 next two lectures 4/8/16 1 Pop Question 9 Binding data for your thesis protein (YTP), binding

More information

The Molecule Cloud - compact visualization of large collections of molecules

The Molecule Cloud - compact visualization of large collections of molecules Ertl and Rohde Journal of Cheminformatics 2012, 4:12 METHODOLOGY Open Access The Molecule Cloud - compact visualization of large collections of molecules Peter Ertl * and Bernhard Rohde Abstract Background:

More information

Tutorial. Getting started. Sample to Insight. March 31, 2016

Tutorial. Getting started. Sample to Insight. March 31, 2016 Getting started March 31, 2016 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com Getting started

More information

Towards a Web application for viewing Spatial Linked Open Data of Rotterdam

Towards a Web application for viewing Spatial Linked Open Data of Rotterdam Towards a Web application for viewing Spatial Linked Open Data of Rotterdam Godelief Abhilakh Missier Msc Geomatics for the Built Environment P5 presentation 22-06-2015 Challenge the future 1 Content 1.

More information

2-4 Chemical Reactions and Enzymes

2-4 Chemical Reactions and Enzymes 2-4 Chemical Reactions and Enzymes Living things, as you have seen, are made up of chemical compounds-some simple and some complex. But chemistry isn t just what life is made of-chemistry is also what

More information

SABIO-RK Integration and Curation of Reaction Kinetics Data Ulrike Wittig

SABIO-RK Integration and Curation of Reaction Kinetics Data  Ulrike Wittig SABIO-RK Integration and Curation of Reaction Kinetics Data http://sabio.villa-bosch.de/sabiork Ulrike Wittig Overview Introduction /Motivation Database content /User interface Data integration Curation

More information

USING THE COMPARATIVE TOXICOGENOMICS DATABASE TO UNDERSTAND THE IMPACT OF HIGH-RISK TOXICANTS ON BIOLOGICAL PATHWAYS. Samantha E.

USING THE COMPARATIVE TOXICOGENOMICS DATABASE TO UNDERSTAND THE IMPACT OF HIGH-RISK TOXICANTS ON BIOLOGICAL PATHWAYS. Samantha E. USING THE COMPARATIVE TOXICOGENOMICS DATABASE TO UNDERSTAND THE IMPACT OF HIGH-RISK TOXICANTS ON BIOLOGICAL PATHWAYS Samantha E. Tulenko A technical report submitted to the faculty of the University of

More information

Query Processing on RDF data

Query Processing on RDF data Query Processing on RDF data Hai Huang B.E. (HFUT, China) M.E. (IIM of CAS, China) A dissertation submitted to the Faculty of Information and Communication Technologies Swinburne University of Technology

More information

Using AutoDock for Virtual Screening

Using AutoDock for Virtual Screening Using AutoDock for Virtual Screening CUHK Croucher ASI Workshop 2011 Stefano Forli, PhD Prof. Arthur J. Olson, Ph.D Molecular Graphics Lab Screening and Virtual Screening The ultimate tool for identifying

More information

The Role of Metadata and Semantic Web in SDI - selected issues

The Role of Metadata and Semantic Web in SDI - selected issues The Role of Metadata and Semantic Web in SDI - selected issues Adam Iwaniak Wroclaw University of Environmental and Life Sciences Kon-dor s.c. 8th Cartography and Geoinformation Conference, Zagreb 2012

More information

Open PHACTS. Deliverable 1.5.1

Open PHACTS. Deliverable 1.5.1 Deliverable 1.5.1 Transporter Taxonomy Prepared by UNIVIE, EBI Approved by UNIVIE, EBI, GSK, CD, Pfizer August 2014 Version 1.0 Project title: An open, integrated and sustainable chemistry, biology and

More information

J. Hasenauer a J. Heinrich b M. Doszczak c P. Scheurich c D. Weiskopf b F. Allgöwer a

J. Hasenauer a J. Heinrich b M. Doszczak c P. Scheurich c D. Weiskopf b F. Allgöwer a J. Hasenauer a J. Heinrich b M. Doszczak c P. Scheurich c D. Weiskopf b F. Allgöwer a Visualization methods and support vector machines as tools for determining markers in models of heterogeneous populations:

More information

Model-theoretic Semantics

Model-theoretic Semantics Model-theoretic Semantics 1 Semantics Intro I What is the semantics of the following statement, according to RDF and according to RDFS? Ex:SpaceAccessory rdfs:subclassof ex:product 2 Semantics Intro II

More information

How IJC is Adding Value to a Molecular Design Business

How IJC is Adding Value to a Molecular Design Business How IJC is Adding Value to a Molecular Design Business James Mills Sexis LLP ChemAxon TechTalk Stevenage, ov 2012 james.mills@sexis.co.uk Overview Introduction to Sexis Sexis IJC use cases Data visualisation

More information

How to Create a Substance Answer Set

How to Create a Substance Answer Set How to Create a Substance Answer Set Select among five search techniques to find substances Since substances can be described by multiple names or other characteristics, SciFinder gives you the flexibility

More information

Enzyme Kinetics: The study of reaction rates. For each very short segment dt of the reaction: V k 1 [S]

Enzyme Kinetics: The study of reaction rates. For each very short segment dt of the reaction: V k 1 [S] Enzyme Kinetics: The study of reaction rates. For the one-way st -order reaction: S the rate of reaction (V) is: V P [ P] moles / L t sec For each very short segment dt of the reaction: d[ P] d[ S] V dt

More information

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.1 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

Welcome to Week 5. Chapter 9 - Binding, Structure, and Diversity. 9.1 Intermolecular Forces. Starting week five video. Introduction to Chapter 9

Welcome to Week 5. Chapter 9 - Binding, Structure, and Diversity. 9.1 Intermolecular Forces. Starting week five video. Introduction to Chapter 9 Welcome to Week 5 Starting week five video Please watch the online video (49 seconds). Chapter 9 - Binding, Structure, and Diversity Introduction to Chapter 9 Chapter 9 contains six subsections. Intermolecular

More information

Systems Biology Across Scales: A Personal View XIV. Intra-cellular systems IV: Signal-transduction and networks. Sitabhra Sinha IMSc Chennai

Systems Biology Across Scales: A Personal View XIV. Intra-cellular systems IV: Signal-transduction and networks. Sitabhra Sinha IMSc Chennai Systems Biology Across Scales: A Personal View XIV. Intra-cellular systems IV: Signal-transduction and networks Sitabhra Sinha IMSc Chennai Intra-cellular biochemical networks Metabolic networks Nodes:

More information

ENZYME KINETICS. Medical Biochemistry, Lecture 24

ENZYME KINETICS. Medical Biochemistry, Lecture 24 ENZYME KINETICS Medical Biochemistry, Lecture 24 Lecture 24, Outline Michaelis-Menten kinetics Interpretations and uses of the Michaelis- Menten equation Enzyme inhibitors: types and kinetics Enzyme Kinetics

More information

Nonlinear pharmacokinetics

Nonlinear pharmacokinetics 5 Nonlinear pharmacokinetics 5 Introduction 33 5 Capacity-limited metabolism 35 53 Estimation of Michaelis Menten parameters(v max andk m ) 37 55 Time to reach a given fraction of steady state 56 Example:

More information

Chemical Reactions and Enzymes. (Pages 49-59)

Chemical Reactions and Enzymes. (Pages 49-59) Chemical Reactions and Enzymes (Pages 49-59) Chemical Reactions Chemistry of Life Not just what life is made of. What life does! Chemical Reactions Chemistry of Life Not just what life is made of. What

More information

OECD QSAR Toolbox v.4.1. Tutorial of how to use Automated workflow for ecotoxicological prediction

OECD QSAR Toolbox v.4.1. Tutorial of how to use Automated workflow for ecotoxicological prediction OECD QSAR Toolbox v.4.1 Tutorial of how to use Automated workflow for ecotoxicological prediction Outlook Aim Automated workflow The exercise Report The OECD QSAR Toolbox for Grouping Chemicals into Categories

More information

BMD645. Integration of Omics

BMD645. Integration of Omics BMD645 Integration of Omics Shu-Jen Chen, Chang Gung University Dec. 11, 2009 1 Traditional Biology vs. Systems Biology Traditional biology : Single genes or proteins Systems biology: Simultaneously study

More information

Collision Theory Gizmo ExploreLearning.com

Collision Theory Gizmo ExploreLearning.com Names: Period: Date: Collision Theory Gizmo ExploreLearning.com Vocabulary: activated complex, catalyst, chemical reaction, concentration, enzyme, half-life, molecule, product, reactant, surface area Prior

More information

Virtual affinity fingerprints in drug discovery: The Drug Profile Matching method

Virtual affinity fingerprints in drug discovery: The Drug Profile Matching method Ágnes Peragovics Virtual affinity fingerprints in drug discovery: The Drug Profile Matching method PhD Theses Supervisor: András Málnási-Csizmadia DSc. Associate Professor Structural Biochemistry Doctoral

More information

OECD QSAR Toolbox v.3.3

OECD QSAR Toolbox v.3.3 OECD QSAR Toolbox v.3.3 Step-by-step example on how to predict the skin sensitisation potential of a chemical by read-across based on an analogue approach Outlook Background Objectives Specific Aims Read

More information

Characterizing degradation kinetics and cellular mechanisms of PROTAC compounds. Kristin M. Riching, Ph.D. Protein Degradation Therapeutics 2018

Characterizing degradation kinetics and cellular mechanisms of PROTAC compounds. Kristin M. Riching, Ph.D. Protein Degradation Therapeutics 2018 Characterizing degradation kinetics and cellular mechanisms of PROTAC compounds Kristin M. Riching, Ph.D. Protein Degradation Therapeutics 28 Understanding the Dynamics and Mechanisms of Protein Degradation

More information

Advanced Higher Biology. Unit 1- Cells and Proteins 2c) Membrane Proteins

Advanced Higher Biology. Unit 1- Cells and Proteins 2c) Membrane Proteins Advanced Higher Biology Unit 1- Cells and Proteins 2c) Membrane Proteins Membrane Structure Phospholipid bilayer Transmembrane protein Integral protein Movement of Molecules Across Membranes Phospholipid

More information

OECD QSAR Toolbox v.4.1

OECD QSAR Toolbox v.4.1 OECD QSAR Toolbox v.4.1 Step-by-step example on how to predict the skin sensitisation potential approach of a chemical by read-across based on an analogue approach Outlook Background Objectives Specific

More information

Creating a Pharmacophore Query from a Reference Molecule & Scaffold Hopping in CSD-CrossMiner

Creating a Pharmacophore Query from a Reference Molecule & Scaffold Hopping in CSD-CrossMiner Table of Contents Creating a Pharmacophore Query from a Reference Molecule & Scaffold Hopping in CSD-CrossMiner Introduction... 2 CSD-CrossMiner Terminology... 2 Overview of CSD-CrossMiner... 3 Features

More information

STRING: Protein association networks. Lars Juhl Jensen

STRING: Protein association networks. Lars Juhl Jensen STRING: Protein association networks Lars Juhl Jensen interaction networks association networks guilt by association protein networks STRING 9.6 million proteins common foundation Exercise 1 Go to http://string-db.org/

More information

OECD QSAR Toolbox v.3.4

OECD QSAR Toolbox v.3.4 OECD QSAR Toolbox v.3.4 Step-by-step example on how to predict the skin sensitisation potential approach of a chemical by read-across based on an analogue approach Outlook Background Objectives Specific

More information

In Silico Investigation of Off-Target Effects

In Silico Investigation of Off-Target Effects PHARMA & LIFE SCIENCES WHITEPAPER In Silico Investigation of Off-Target Effects STREAMLINING IN SILICO PROFILING In silico techniques require exhaustive data and sophisticated, well-structured informatics

More information

Apoptosis in Mammalian Cells

Apoptosis in Mammalian Cells Apoptosis in Mammalian Cells 7.16 2-10-05 Apoptosis is an important factor in many human diseases Cancer malignant cells evade death by suppressing apoptosis (too little apoptosis) Stroke damaged neurons

More information

Delivery. Delivery Processes. Delivery Processes: Distribution. Ultimate Toxicant

Delivery. Delivery Processes. Delivery Processes: Distribution. Ultimate Toxicant Delivery Ultimate Toxicant The chemical species that reacts with the endogenous target. Toxicity depends on the concentration (dose) of the ultimate toxicant at the target site Delivery Processes Absorption

More information

A Deep Convolutional Neural Network for Bioactivity Prediction in Structure-based Drug Discovery

A Deep Convolutional Neural Network for Bioactivity Prediction in Structure-based Drug Discovery AtomNet A Deep Convolutional Neural Network for Bioactivity Prediction in Structure-based Drug Discovery Izhar Wallach, Michael Dzamba, Abraham Heifets Victor Storchan, Institute for Computational and

More information

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.0 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

Retrieving hits through in silico screening and expert assessment M. N. Drwal a,b and R. Griffith a

Retrieving hits through in silico screening and expert assessment M. N. Drwal a,b and R. Griffith a Retrieving hits through in silico screening and expert assessment M.. Drwal a,b and R. Griffith a a: School of Medical Sciences/Pharmacology, USW, Sydney, Australia b: Charité Berlin, Germany Abstract:

More information

Modelling intrinsic apoptosis

Modelling intrinsic apoptosis Modelling intrinsic apoptosis In this part of the course we will model the steps that take place inside a cell when intrinsic apoptosis is triggered. The templates and instructions for preparing the models

More information

Supplementary Figure 1. AnnexinV FITC and Sytox orange staining in wild type, Nlrp3 /, ASC / and casp1/11 / TEC treated with TNF /CHX.

Supplementary Figure 1. AnnexinV FITC and Sytox orange staining in wild type, Nlrp3 /, ASC / and casp1/11 / TEC treated with TNF /CHX. Supplementary Figure 1. AnnexinV FITC and Sytox orange staining in wild type, Nlrp3 /, ASC / and casp1/11 / TEC treated with TNF /CHX. Phase contrast and widefield fluorescence microscopy (20x magnification).

More information

IUCLID Substance Data

IUCLID Substance Data 1 Workshop on CEFIC LRI Project EEM9.4 LRI AMBIT with IUCLID6 support and extended search capabilities IUCLID Substance Data Nikolay Kochev Ideaconsult Ltd. Sofia,Bulgaria 2 Chemical structure vs. Substance

More information

4 Complex schema matching

4 Complex schema matching 4 Complex schema matching We address in this chapter the problem of matching two schemas that belong to an expressive OWL dialect. We adopt an instance-based approach and, therefore, assume that a set

More information