SELF-SERVICE SEMANTIC DATA FEDERATION

Size: px
Start display at page:

Download "SELF-SERVICE SEMANTIC DATA FEDERATION"

Transcription

1 SELF-SERVICE SEMANTIC DATA FEDERATION WE LL MAKE YOU A DATA SCIENTIST Contact: IPSNP Computing Inc. Chris Baker, CEO Chris.Baker@ipsnp.com (506)

2 BIG VISION: SELF-SERVICE DATA FEDERATION Biomedical researchers and clinicians use data and knowledge from multiple sources: online and in-house DB and Web services; nomenclatures, ontologies; Web sites, scientific publications, patents, etc Our query engine HYDRA allows non-technical users to query distributed heterogeneous data sources as a single DB, without help from programmers.

3 SELF-SERVICE DATA FEDERATION WITH SEMANTIC WEB SERVICES

4 QUERY EXAMPLES Find the names of drugs that contain chemical category Y as active ingredients Find documents mentioning enzyme activity X, extract info on protein mutations and visualize mutations on 3D structure Find patients with precondition X diagnosed with infections Y resulting from procedure Z Find patients that were diagnosed with ABC after the same patients were diagnosed XYZ. Find patients diagnosed with X while taking drug C.

5 ANATOMIZED QUERY EXAMPLE Query: Find documents mentioning "haloalkane dehalogenase activity", extract information about mutations and visualize the mutations on 3D protein structure images. To execute this query, HYDRA automatically finds and orchestrates 5 services from our demo registry: PubMed search: keyword query document PubMed IDs PDF retrieval: PubMed ID PDF file URL ASCII extraction: PDF file ASCII text Text mining: ASCII text mutation info Visualization: mutation & protein 3D image (Jmol)

6 WHAT IS SO COOL ABOUT IT? Data federation at its best: independent, heterogeneous data sources (PubMed doc search, PubMed Central for PDFs); not only data is integrated: ASCII extraction, text mining and 3D visualisation are algorithms! Execution is completely automatic: HYDRA finds and invokes the services without any help from the user.

7 HYDRA MINI DEMO

8 FIND PUBMED IDS OF DOCUMENTS MENTIONING PROTEIN P22607 AND CO-MENTIONED PROTEINS

9 SERVICES IN THE REGISTRY

10 SPARQL GENERATION AND EXECUTION

11 EXPORTED RESULTS IN AN EXCEL SPREADSHEET

12 WHAT IS SO COOL ABOUT IT? Querying is semantic, so it can be self-service: users need not know anything about how the data is organised. They just need to know the terminology of the problem domain. Reasoning is used to compute answers: the query says just document and protein, and the data may use specific document and protein types. The class hierarchies are taken from domain ontologies.

13 HOW IS THIS ALL POSSIBLE?

14 HOW IS THIS ALL POSSIBLE? Key ingredient: the SADI framework for Semantic Web services. SADI = Semantic Automated Discovery and Integration In a nutshell, SADI services are: RESTful services (GET/POST) consuming and producing one format (RDF!), with semantic descriptions (in OWL!) fully defining their functionality.

15 SADI SERVICE I/O Input: RDF graph describing some named resource (i.e., a URI, not a blank node). In other words, RDF graph defining an object with the given URI. Output: another RDF graph providing additional (computed) info about the input object or, in other words, linking it to other objects. Since all SADI services talk the same language (RDF), they are 100% syntactically interoperable: output of one SADI service can be directly consumed by any other SADI services.

16 computebmi service I/O

17 SEMANTIC SERVICE FUNCTIONALITY DESCRIPTION OWL syntax is (ab)used to define what RDF graphs are acceptable as input, and what RDF graphs may be produced in the output. Input(computeBMI) = Person and (has_height exactly 1 (Measurement and (has_value exactly 1 float.))) Output(computeBMI) = has_bmi exactly 1 float

18 PRACTICAL IMPLICATIONS The OWL expressions for a service I/O completely define: what the service expects and can accept as input, and what RDF assertions the service can add to the input. Together with total syntactic interoperability, this feature ENABLES THE DEVELOPMENT OF CLIENTS THAT, GIVEN A SPARQL QUERY, CAN FIGURE OUT WHICH SERVICES CAN BE USED TO COMPUTE IT, AND INVOKE THEM AUTOMATICALLY!

19 RESOURCE PUBLISHING WITH SADI Specify the source of data / software you want to publish with SADI. For example a database about drugs treating specific diseases can support a service linking Drug IDs to disease IDs. Model data semantically: find ontologies describing your domains and decide how your data will be expressed in the terms of these ontologies.

20 RESOURCE PUBLISHING WITH SADI Define your services I/O semantically: decide how to describe the operation of your services in the terms of the domain ontologies, i.e., what will be written in the input and output classes. Code the business logic of your services in Java, Perl or Python. If a service wraps a DB, convert the input RDF into a query and the query results back to RDF. The effort is usually tiny compared to the modelling. Overall development costs may be considerable, but this cost is well amortized because SADI services are highly reusable, due to their unprecedented degree of interoperability and discoverability.

21 SERVICE DEVELOPMENT COST CONSIDERATIONS Wrapping existing functionality as SADI services is usually trivial: available libraries (Java, Perl, Python) hide the communication-related issues. However, some programming is always required to process IO: RDF (Jena) internal representation RDF (Jena) Complete or partial automation is desirable!

22 AUTHORING SADI SERVICE DESCRIPTIONS: TUTORIAL MATERIALS CSHALS Introduction Writing SADI Services Tutorial Part 1 Writing SADI Services Tutorial Part 2

23 AUTOMATIC SERVICE GENERATION Observation: some patterns in service code are very frequent - opportunity for automation. Example: online DB LinkDB (Kyoto U.) maps between many bio. entity IDs, e.g., KEGG Gene UniProt; o Too many almost identical services to program manually, so we wrote a program that generates service code automatically from its semantic description. Nearly completely automatic generation is possible for relational data - SQL DB, triplestores, spreadsheets, CSV, etc. (forthcoming PhD thesis by Md. Sadnan Al-Manir).

24 BRIEF HISTORY AND CURRENT STATE OF SADI Proposed by Mark Wilkinson in 2009 and originally developed by his group at UBC. Over $1.6M invested in academic and commercial SADIrelated projects. Open-source Java, Perl and Python APIs for writing SADI services. One open-source and one commercial query client (SHARE and HYDRA). Multiple case studies in Genomics, Cheminformatics, Lipidomics, Ecotoxicology and Clinical Intelligence.

25 IPSNP S HYDRA AND QUERY GUI

26 HYDRA QUERY ENGINE Given a SPARQL query, HYDRA analyses it by using an intelligent logic-based algorithm (proprietary). HYDRA sends requests descriptions of potentially useful services from available SADI service registries. HYDRA processes the descriptions and figures out which services have to be invoked on what data and in what order.

27 HYDRA VS SHARE SHARE is a first prototype of a query engine for SADI developed by Mark Wilkinson s group at UBC. Proves the concept well (inspired us, anyway). But it s gradware: the architecture is naive and unnecessarily complex simultaneously. It cannot scale up by incremental improvement. HYDRA s architecture was developed from the start with the scalability in mind (details are proprietary).

28 REASONING-ENABLED QUERYING Some queries are too complex unless generality can be exploited: o For example, query concerning all antibiotics require generalisation, otherwise all types of antibiotics would have to be enumerated in the query. Much better way to do this is to import a classification of drugs and use it in query execution. HYDRA facilitates such reasoning and even more complex reasoning with rules.

29 QUERY COMPOSITION GUI FOR NON-TECHNICAL USERS SPARQL is nicer than many other query languages, but it s still too complex for non-technical users. IPSNP s browser-based GUI facilitates o intuitive graphical query composition and editing; o Google-like keyword based query interpretation.

30 QUERY COMPOSITION Queries built based on entry of Google-like Keyphrases: Keyphrase: document mentions protein P22607

31 A QUERY GRAPH IS GENERATED FOR THE KEYPHRASE document mentions protein P22607

32 ADDING AN ADDITIONAL KEYPHRASE Keyphrase: has pubmed id :

33 QUERY GRAPH IS EXTENDED WITH SECOND KEYPHRASE Keyphrase: document mentions protein P22607 Keyphrase: has pubmed id

34 OPTION 2: MANUALLY ADD CLASSES, INCOMING AND OUTGOING PROPERTIES

35 MANUALLY ADDED PROPERTY

36 PLANNED HYDRA-BASED PRODUCTS HYDRA + GUI = self-service query tool both standalone and cloud-based edition with a critical mass of SADI services HYDRA as a Java API to be used as middleware. May be embedded in OEM partners software. IPSNP will also implement HYDRA-based turnkey solutions for prominent Bioinformatics and Clinical IT problems.

37 WHO WE ARE

38 IPSNP COMPUTING INC. Startup based in NB, Canada, building on and commercializing prior academic research on SADI. Founded to develop an industrial strength query client for SADI, to super-cede the research proof-of-concept prototype SHARE (UBC). Development stage: HYDRA - advanced alpha, GUI is pre-alpha. On-going pilots: customers in Bioinformatics / Clinical IT. Looking for angel investors and/or customers.

39 THANK YOU Further materials/services are available on request: Live demos. Publications on previous case studies. Business info packs for investors. Training/consulting. Pitch slides for hospital pilots on hospital-acquired infections surveillance, and clinical trial cohort selection.

40 Q AND A SLIDES

41 OVERALL REFERENCE ARCHITECTURE FOR CLINICAL TRIALS

42 DIAGNOSTIC ELEMENTS AS QUERIES PATIENT HAS LEUKOPENIA

43 CHECKING ELIGIBILITY CRITERIA Cost reduction: automatic pre-selection of patients Timely alerts about eligible patients

44 QUERYING SADI WEB SERVICES SELECT?term?name WHERE {?protein ont:hastag keyword:parkinson.?protein pred:hasgoterm?term.?term pred:hastermname?name } CLIENT QUERY ENGINE SERVICE REGISTRY SERVICES Find Gene Ontology terms (biological process, cellular component, and molecular function annotations) for proteins associated with Parkinson's disease:

SEBI: An Architecture for Biomedical Image Discovery, Interoperability and Reusability based on Semantic Enrichment

SEBI: An Architecture for Biomedical Image Discovery, Interoperability and Reusability based on Semantic Enrichment SEBI: An Architecture for Biomedical Image Discovery, Interoperability and Reusability based on Semantic Enrichment Ahmad C. Bukhari 1, Michael Krauthammer 2, Christopher J.O. Baker 1 1 Department of Computer

More information

Powering Knowledge Discovery. Insights from big data with Linguamatics I2E

Powering Knowledge Discovery. Insights from big data with Linguamatics I2E Powering Knowledge Discovery Insights from big data with Linguamatics I2E Gain actionable insights from unstructured data The world now generates an overwhelming amount of data, most of it written in natural

More information

Bioqueries: A Social Community Sharing Experiences while Querying Biological Linked Data (

Bioqueries: A Social Community Sharing Experiences while Querying Biological Linked Data ( Bioqueries: A Social Community Sharing Experiences while Querying Biological Linked Data (http://bioqueries.uma.es) María Jesús García-Godoy, Ismael Navas-Delgado, José Francisco Aldana Montes Computing

More information

Linked Data: Fast, low cost semantic interoperability for health care?

Linked Data: Fast, low cost semantic interoperability for health care? Linked Data: Fast, low cost semantic interoperability for health care? About the presentation Part I: Motivation Why we need semantic operability in health care Why enhancing existing systems to increase

More information

A Semantic Web-Based Approach for Harvesting Multilingual Textual. definitions from Wikipedia to support ICD-11 revision

A Semantic Web-Based Approach for Harvesting Multilingual Textual. definitions from Wikipedia to support ICD-11 revision A Semantic Web-Based Approach for Harvesting Multilingual Textual Definitions from Wikipedia to Support ICD-11 Revision Guoqian Jiang 1,* Harold R. Solbrig 1 and Christopher G. Chute 1 1 Department of

More information

Advances in Data Integration & Representation in Systems Biology

Advances in Data Integration & Representation in Systems Biology Advances in Data Integration & Representation in Systems Biology Susie Stephens Principal Product Manager, Life Sciences Oracle susie.stephens@oracle.com Outline Systems Biology Data Requirements Semantic

More information

JENA: A Java API for Ontology Management

JENA: A Java API for Ontology Management JENA: A Java API for Ontology Management Hari Rajagopal IBM Corporation Page Agenda Background Intro to JENA Case study Tools and methods Questions Page The State of the Web Today The web is more Syntactic

More information

Toward a Knowledge-Based Solution for Information Discovery in Complex and Dynamic Domains

Toward a Knowledge-Based Solution for Information Discovery in Complex and Dynamic Domains Toward a Knowledge-Based Solution for Information Discovery in Complex and Dynamic Domains Eloise Currie and Mary Parmelee SAS Institute, Cary NC About SAS: The Power to Know SAS: The Market Leader in

More information

Unstructured Text in Big Data The Elephant in the Room

Unstructured Text in Big Data The Elephant in the Room Unstructured Text in Big Data The Elephant in the Room David Milward ICIC, October 2013 Click Unstructured to to edit edit Master Master Big title Data style title style Big Data Volume, Variety, Velocity

More information

Improving Interoperability of Text Mining Tools with BioC

Improving Interoperability of Text Mining Tools with BioC Improving Interoperability of Text Mining Tools with BioC Ritu Khare, Chih-Hsuan Wei, Yuqing Mao, Robert Leaman, Zhiyong Lu * National Center for Biotechnology Information, 8600 Rockville Pike, Bethesda,

More information

Korea Institute of Oriental Medicine, South Korea 2 Biomedical Knowledge Engineering Laboratory,

Korea Institute of Oriental Medicine, South Korea 2 Biomedical Knowledge Engineering Laboratory, A Medical Treatment System based on Traditional Korean Medicine Ontology Sang-Kyun Kim 1, SeJin Nam 2, Dong-Hun Park 1, Yong-Taek Oh 1, Hyunchul Jang 1 1 Literature & Informatics Research Division, Korea

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

Knowledge Representations. How else can we represent knowledge in addition to formal logic?

Knowledge Representations. How else can we represent knowledge in addition to formal logic? Knowledge Representations How else can we represent knowledge in addition to formal logic? 1 Common Knowledge Representations Formal Logic Production Rules Semantic Nets Schemata and Frames 2 Production

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

warwick.ac.uk/lib-publications

warwick.ac.uk/lib-publications Original citation: Zhao, Lei, Lim Choi Keung, Sarah Niukyun and Arvanitis, Theodoros N. (2016) A BioPortalbased terminology service for health data interoperability. In: Unifying the Applications and Foundations

More information

Introduction to RDF and the Semantic Web for the life sciences

Introduction to RDF and the Semantic Web for the life sciences Introduction to RDF and the Semantic Web for the life sciences Simon Jupp Sample Phenotypes and Ontologies Team European Bioinformatics Institute jupp@ebi.ac.uk Practical sessions Converting data to RDF

More information

A Semantic Web Approach to Integrative Biosurveillance. Narendra Kunapareddy, UTHSC Zhe Wu, Ph.D., Oracle

A Semantic Web Approach to Integrative Biosurveillance. Narendra Kunapareddy, UTHSC Zhe Wu, Ph.D., Oracle A Semantic Web Approach to Integrative Biosurveillance Narendra Kunapareddy, UTHSC Zhe Wu, Ph.D., Oracle This talk: Translational BioInformatics and Information Integration Dilemma Case Study: Public Health

More information

Semantic Web. Dr. Philip Cannata 1

Semantic Web. Dr. Philip Cannata 1 Semantic Web Dr. Philip Cannata 1 Dr. Philip Cannata 2 Dr. Philip Cannata 3 Dr. Philip Cannata 4 See data 14 Scientific American.sql on the class website calendar SELECT strreplace(x, 'sa:', '') "C" FROM

More information

XML in the bipharmaceutical

XML in the bipharmaceutical XML in the bipharmaceutical sector XML holds out the opportunity to integrate data across both the enterprise and the network of biopharmaceutical alliances - with little technological dislocation and

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION 1 CHAPTER 1 INTRODUCTION Most of today s Web content is intended for the use of humans rather than machines. While searching documents on the Web using computers, human interpretation is required before

More information

Complex Query Formulation Over Diverse Information Sources Using an Ontology

Complex Query Formulation Over Diverse Information Sources Using an Ontology Complex Query Formulation Over Diverse Information Sources Using an Ontology Robert Stevens, Carole Goble, Norman Paton, Sean Bechhofer, Gary Ng, Patricia Baker and Andy Brass Department of Computer Science,

More information

Languages and tools for building and using ontologies. Simon Jupp, James Malone

Languages and tools for building and using ontologies. Simon Jupp, James Malone An overview of ontology technology Languages and tools for building and using ontologies Simon Jupp, James Malone jupp@ebi.ac.uk, malone@ebi.ac.uk Outline Languages OWL and OBO classes, individuals, relations,

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

Integrating large, fast-moving, and heterogeneous data sets in biology.

Integrating large, fast-moving, and heterogeneous data sets in biology. Integrating large, fast-moving, and heterogeneous data sets in biology. C. Titus Brown Asst Prof, CSE and Microbiology; BEACON NSF STC Michigan State University ctb@msu.edu Introduction Background: Modeling

More information

This presentation is for informational purposes only and may not be incorporated into a contract or agreement.

This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This presentation is for informational purposes only and may not be incorporated into a contract or agreement. Oracle10g RDF Data Mgmt: In Life Sciences Xavier Lopez Director, Server Technologies Oracle

More information

The National Cancer Institute's Thésaurus and Ontology

The National Cancer Institute's Thésaurus and Ontology The National Cancer Institute's Thésaurus and Ontology Jennifer Golbeck 1, Gilberto Fragoso 2, Frank Hartel 2, Jim Hendler 1, Jim Oberthaler 2, Bijan Parsia 1 1 University of Maryland, College Park 2 National

More information

Executive Summary for deliverable D6.1: Definition of the PFS services (requirements, initial design)

Executive Summary for deliverable D6.1: Definition of the PFS services (requirements, initial design) Electronic Health Records for Clinical Research Executive Summary for deliverable D6.1: Definition of the PFS services (requirements, initial design) Project acronym: EHR4CR Project full title: Electronic

More information

Interoperability. Doug Fridsma, MD PhD President & CEO, AMIA

Interoperability. Doug Fridsma, MD PhD President & CEO, AMIA Interoperability Doug Fridsma, MD PhD President & CEO, AMIA Getting to Interoperability To get to interoperability (or to avoid information blocking) we need a common understanding of the problem Can t

More information

Development of Contents Management System Based on Light-Weight Ontology

Development of Contents Management System Based on Light-Weight Ontology Development of Contents Management System Based on Light-Weight Ontology Kouji Kozaki, Yoshinobu Kitamura, and Riichiro Mizoguchi Abstract In the Structuring Nanotechnology Knowledge project, a material-independent

More information

Opus: University of Bath Online Publication Store

Opus: University of Bath Online Publication Store Patel, M. (2004) Semantic Interoperability in Digital Library Systems. In: WP5 Forum Workshop: Semantic Interoperability in Digital Library Systems, DELOS Network of Excellence in Digital Libraries, 2004-09-16-2004-09-16,

More information

National Centre for Text Mining NaCTeM. e-science and data mining workshop

National Centre for Text Mining NaCTeM. e-science and data mining workshop National Centre for Text Mining NaCTeM e-science and data mining workshop John Keane Co-Director, NaCTeM john.keane@manchester.ac.uk School of Informatics, University of Manchester What is text mining?

More information

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services Contents G52IWS: The Semantic Web Chris Greenhalgh 2007-11-10 Introduction to the Semantic Web Semantic Web technologies Overview RDF OWL Semantic Web Services Concluding comments 1 See Developing Semantic

More information

Ecotoxicology Data Federation with SADI Semantic Web Services

Ecotoxicology Data Federation with SADI Semantic Web Services Ecotoxicology Data Federation with SADI Semantic Web Services Alexandre Riazanov 1,6 and Matthew M. Hindle 4,5 and E. Scott Goudreau 2 and Christopher J. Martyniuk 2,3 and Christopher J. O. Baker 1,6 1

More information

APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT. Mani Keeran, CFA Gi Kim, CFA Preeti Sharma

APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT. Mani Keeran, CFA Gi Kim, CFA Preeti Sharma APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT Mani Keeran, CFA Gi Kim, CFA Preeti Sharma 2 What we are going to discuss During last two decades, majority of information assets have been digitized

More information

Semantic Web Technologies

Semantic Web Technologies 1/33 Semantic Web Technologies Lecture 11: SWT for the Life Sciences 4: BioRDF and Scientifc Workflows Maria Keet email: keet -AT- inf.unibz.it home: http://www.meteck.org blog: http://keet.wordpress.com/category/computer-science/72010-semwebtech/

More information

Using Ontologies for Data and Semantic Integration

Using Ontologies for Data and Semantic Integration Using Ontologies for Data and Semantic Integration Monica Crubézy Stanford Medical Informatics, Stanford University ~~ November 4, 2003 Ontologies Conceptualize a domain of discourse, an area of expertise

More information

An Algebra for Protein Structure Data

An Algebra for Protein Structure Data An Algebra for Protein Structure Data Yanchao Wang, and Rajshekhar Sunderraman Abstract This paper presents an algebraic approach to optimize queries in domain-specific database management system for protein

More information

New Approach to Graph Databases

New Approach to Graph Databases Paper PP05 New Approach to Graph Databases Anna Berg, Capish, Malmö, Sweden Henrik Drews, Capish, Malmö, Sweden Catharina Dahlbo, Capish, Malmö, Sweden ABSTRACT Graph databases have, during the past few

More information

The Data Web and Linked Data.

The Data Web and Linked Data. Mustafa Jarrar Lecture Notes, Knowledge Engineering (SCOM7348) University of Birzeit 1 st Semester, 2011 Knowledge Engineering (SCOM7348) The Data Web and Linked Data. Dr. Mustafa Jarrar University of

More information

Wither OWL in a knowledgegraphed, Linked-Data World?

Wither OWL in a knowledgegraphed, Linked-Data World? Wither OWL in a knowledgegraphed, Linked-Data World? Jim Hendler @jahendler Tetherless World Professor of Computer, Web and Cognitive Science Director, Rensselaer Institute for Data Exploration and Applications

More information

Agent-Enabling Transformation of E-Commerce Portals with Web Services

Agent-Enabling Transformation of E-Commerce Portals with Web Services Agent-Enabling Transformation of E-Commerce Portals with Web Services Dr. David B. Ulmer CTO Sotheby s New York, NY 10021, USA Dr. Lixin Tao Professor Pace University Pleasantville, NY 10570, USA Abstract:

More information

D B M G Data Base and Data Mining Group of Politecnico di Torino

D B M G Data Base and Data Mining Group of Politecnico di Torino DataBase and Data Mining Group of Data mining fundamentals Data Base and Data Mining Group of Data analysis Most companies own huge databases containing operational data textual documents experiment results

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

Webinar Annotate data in the EUDAT CDI

Webinar Annotate data in the EUDAT CDI Webinar Annotate data in the EUDAT CDI Yann Le Franc - e-science Data Factory, Paris, France March 16, 2017 This work is licensed under the Creative Commons CC-BY 4.0 licence. Attribution: Y. Le Franc

More information

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Spring 90-91

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Spring 90-91 بسمه تعالی Semantic Web Semantic Web Services Morteza Amini Sharif University of Technology Spring 90-91 Outline Semantic Web Services Basics Challenges in Web Services Semantics in Web Services Web Service

More information

Extracting reproducible simulation studies from model repositories using the CombineArchive Toolkit

Extracting reproducible simulation studies from model repositories using the CombineArchive Toolkit Extracting reproducible simulation studies from model repositories using the CombineArchive Toolkit Martin Scharm, Dagmar Waltemath Department of Systems Biology and Bioinformatics University of Rostock

More information

BioNav: An Ontology-Based Framework to Discover Semantic Links in the Cloud of Linked Data

BioNav: An Ontology-Based Framework to Discover Semantic Links in the Cloud of Linked Data BioNav: An Ontology-Based Framework to Discover Semantic Links in the Cloud of Linked Data María-Esther Vidal 1, Louiqa Raschid 2, Natalia Márquez 1, Jean Carlo Rivera 1, and Edna Ruckhaus 1 1 Universidad

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2411

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 1, 2017 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2457

More information

Core Technology Development Team Meeting

Core Technology Development Team Meeting Core Technology Development Team Meeting To hear the meeting, you must call in Toll-free phone number: 1-866-740-1260 Access Code: 2201876 For international call in numbers, please visit: https://www.readytalk.com/account-administration/international-numbers

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

From Raw Sensor Data to Semantic Web Triples Information Flow in Semantic Sensor Networks

From Raw Sensor Data to Semantic Web Triples Information Flow in Semantic Sensor Networks From Raw Sensor Data to Semantic Web Triples Information Flow in Semantic Sensor Networks Nikolaos Konstantinou, Ph.D. Autonomic and Grid Computing group Athens Information Technology Lecture Outline Introduction

More information

Electronic Health Records with Cleveland Clinic and Oracle Semantic Technologies

Electronic Health Records with Cleveland Clinic and Oracle Semantic Technologies Electronic Health Records with Cleveland Clinic and Oracle Semantic Technologies David Booth, Ph.D., Cleveland Clinic (contractor) Oracle OpenWorld 20-Sep-2010 Latest version of these slides: http://dbooth.org/2010/oow/

More information

Semantic-Based Web Mining Under the Framework of Agent

Semantic-Based Web Mining Under the Framework of Agent Semantic-Based Web Mining Under the Framework of Agent Usha Venna K Syama Sundara Rao Abstract To make automatic service discovery possible, we need to add semantics to the Web service. A semantic-based

More information

<Insert Picture Here> Semantic Technologies

<Insert Picture Here> Semantic Technologies Semantic Technologies Tore Bjelland Managing Director, Oracle Norway Semantic Days 2011, Oslo, Norway Infiniband Switches JRockit Java Virtual Machine Open Standards - semantics From

More information

About the Edinburgh Pathway Editor:

About the Edinburgh Pathway Editor: About the Edinburgh Pathway Editor: EPE is a visual editor designed for annotation, visualisation and presentation of wide variety of biological networks, including metabolic, genetic and signal transduction

More information

Data mining fundamentals

Data mining fundamentals Data mining fundamentals Elena Baralis Politecnico di Torino Data analysis Most companies own huge bases containing operational textual documents experiment results These bases are a potential source of

More information

SmartData Fabric distributed virtual data, graph data and master data management, analytics and security. Solutions and Key Features Revision 2.

SmartData Fabric distributed virtual data, graph data and master data management, analytics and security. Solutions and Key Features Revision 2. s and Key Features Revision 2.5 Page 1 of 7 www.whamtech.com (972) 991-5700 info@whamtech.com March 2018 ID SOL1 Automated Data Discovery and Classification (ADDC) Key Feature ID KF01 KF02 KF03 Key Feature

More information

enanomapper database, search tools and templates Nina Jeliazkova, Nikolay Kochev IdeaConsult Ltd. Sofia, Bulgaria

enanomapper database, search tools and templates Nina Jeliazkova, Nikolay Kochev IdeaConsult Ltd. Sofia, Bulgaria enanomapper database, search tools and templates Nina Jeliazkova, Nikolay Kochev IdeaConsult Ltd. Sofia, Bulgaria www.ideaconsult.net Ø enanomapper database: data model, technology; NANoREG data transfer

More information

Text mining tools for semantically enriching the scientific literature

Text mining tools for semantically enriching the scientific literature Text mining tools for semantically enriching the scientific literature Sophia Ananiadou Director National Centre for Text Mining School of Computer Science University of Manchester Need for enriching the

More information

Taxonomy Tools: Collaboration, Creation & Integration. Dow Jones & Company

Taxonomy Tools: Collaboration, Creation & Integration. Dow Jones & Company Taxonomy Tools: Collaboration, Creation & Integration Dave Clarke Global Taxonomy Director dave.clarke@dowjones.com Dow Jones & Company Introduction Software Tools for Taxonomy 1. Collaboration 2. Creation

More information

Web Resources. iphemap: An atlas of phenotype to genotype relationships of human ipsc models of neurological diseases

Web Resources. iphemap: An atlas of phenotype to genotype relationships of human ipsc models of neurological diseases Web Resources iphemap: An atlas of phenotype to genotype relationships of human ipsc models of neurological diseases Ethan W. Hollingsworth 1, 2, Jacob E. Vaughn 1, 2, Josh C. Orack 1,2, Chelsea Skinner

More information

SciVerse ScienceDirect. User Guide. October SciVerse ScienceDirect. Open to accelerate science

SciVerse ScienceDirect. User Guide. October SciVerse ScienceDirect. Open to accelerate science SciVerse ScienceDirect User Guide October 2010 SciVerse ScienceDirect Open to accelerate science Welcome to SciVerse ScienceDirect: How to get the most from your subscription SciVerse ScienceDirect is

More information

NCI Thesaurus, managing towards an ontology

NCI Thesaurus, managing towards an ontology NCI Thesaurus, managing towards an ontology CENDI/NKOS Workshop October 22, 2009 Gilberto Fragoso Outline Background on EVS The NCI Thesaurus BiomedGT Editing Plug-in for Protege Semantic Media Wiki supports

More information

cbioportal https://www.ncbi.nlm.nih.gov/pubmed/ /5/401

cbioportal  https://www.ncbi.nlm.nih.gov/pubmed/ /5/401 cbioportal http://www.cbioportal.org/ https://www.ncbi.nlm.nih.gov/pubmed/23550210 http://cancerdiscovery.aacrjournals.org/content/ 2/5/401 Tutorials http://www.cbioportal.org/tutorial.jsp http://www.cbioportal.org/faq.jsp

More information

<is web> Information Systems & Semantic Web University of Koblenz Landau, Germany

<is web> Information Systems & Semantic Web University of Koblenz Landau, Germany Information Systems & University of Koblenz Landau, Germany Semantic Search examples: Swoogle and Watson Steffen Staad credit: Tim Finin (swoogle), Mathieu d Aquin (watson) and their groups 2009-07-17

More information

Humboldt-University of Berlin

Humboldt-University of Berlin Humboldt-University of Berlin Exploiting Link Structure to Discover Meaningful Associations between Controlled Vocabulary Terms exposé of diploma thesis of Andrej Masula 13th October 2008 supervisor: Louiqa

More information

Use of Semantic Technologies at Eli Lilly and Company. J Phil Brooks Information Consultant, SE Data Team Discover IT Eli Lilly and Company

Use of Semantic Technologies at Eli Lilly and Company. J Phil Brooks Information Consultant, SE Data Team Discover IT Eli Lilly and Company Use of Semantic Technologies at Eli Lilly and Company J Phil Brooks Information Consultant, SE Data Team Discover IT Eli Lilly and Company Notable Semantic Projects at Lilly Discovery Metadata Integration

More information

Cost-Benefit Analysis of Retrospective vs. Prospective Data Standardization

Cost-Benefit Analysis of Retrospective vs. Prospective Data Standardization Cost-Benefit Analysis of Retrospective vs. Prospective Data Standardization Vicki Seyfert-Margolis, PhD Senior Advisor, Science Innovation and Policy Food and Drug Administration IOM Sharing Clinical Research

More information

The CALBC RDF Triple store: retrieval over large literature content

The CALBC RDF Triple store: retrieval over large literature content The CALBC RDF Triple store: retrieval over large literature content Samuel Croset, Christoph Grabmüller, Chen Li, Silverstras Kavaliauskas, Dietrich Rebholz-Schuhmann croset@ebi.ac.uk 10 th December 2010,

More information

Semantic Technology. Opportunities

Semantic Technology. Opportunities Semantic Technology Opportunities Avinash Punekar Scientific Publishing Services April 2011 2 Semantic Technology April 2011 3 What is Semantic Technology? ² Semantic Web ² Web 3.0 ² Linked Open Data /

More information

Unlocking the full potential of location-based services: Linked Data driven Web APIs

Unlocking the full potential of location-based services: Linked Data driven Web APIs Unlocking the full potential of location-based services: Linked Data driven Web APIs Open Standards for Linked Organisations about Raf Buyle Ziggy Vanlishout www.vlaanderen.be/informatievlaanderen 6.4

More information

Semantic Web for Chemical Genomics need, how to, and hurdles

Semantic Web for Chemical Genomics need, how to, and hurdles Semantic Web for Chemical Genomics need, how to, and hurdles Talapady N Bhat Biochemical Sciences Division, CSTL, NIST, 100 Bureau Drive, Gaithersburg MD20899, USA ABSTRACT Semantic Web has been often

More information

VISO: A Shared, Formal Knowledge Base as a Foundation for Semi-automatic InfoVis Systems

VISO: A Shared, Formal Knowledge Base as a Foundation for Semi-automatic InfoVis Systems VISO: A Shared, Formal Knowledge Base as a Foundation for Semi-automatic InfoVis Systems Jan Polowinski Martin Voigt Technische Universität DresdenTechnische Universität Dresden 01062 Dresden, Germany

More information

Realising the first prototype of the Semantic Interoperability Logical Framework

Realising the first prototype of the Semantic Interoperability Logical Framework Realising the first prototype of the Semantic Interoperability Logical Framework Vahid Mojtahed, Vahid.Mojtahed@foi.se Mika Cohen, Mika.Cohen@foi.se Thomas Jansson, Thomas.Jansson@foi.se Martin Eklöf,

More information

Big Linked Data ETL Benchmark on Cloud Commodity Hardware

Big Linked Data ETL Benchmark on Cloud Commodity Hardware Big Linked Data ETL Benchmark on Cloud Commodity Hardware iminds Ghent University Dieter De Witte, Laurens De Vocht, Ruben Verborgh, Erik Mannens, Rik Van de Walle Ontoforce Kenny Knecht, Filip Pattyn,

More information

A Semantic Model for Federated Queries Over a Normalized Corpus

A Semantic Model for Federated Queries Over a Normalized Corpus A Semantic Model for Federated Queries Over a Normalized Corpus Samuel Croset, Christoph Grabmüller, Dietrich Rebholz-Schuhmann 17 th March 2010, Hinxton EBI is an Outstation of the European Molecular

More information

SEMANTIC SUPPORT FOR MEDICAL IMAGE SEARCH AND RETRIEVAL

SEMANTIC SUPPORT FOR MEDICAL IMAGE SEARCH AND RETRIEVAL SEMANTIC SUPPORT FOR MEDICAL IMAGE SEARCH AND RETRIEVAL Wang Wei, Payam M. Barnaghi School of Computer Science and Information Technology The University of Nottingham Malaysia Campus {Kcy3ww, payam.barnaghi}@nottingham.edu.my

More information

Open PHACTS. An Introduction and Explanation March Acknowledgements: Contains contributions from across the Open PHACTS partners.

Open PHACTS. An Introduction and Explanation March Acknowledgements: Contains contributions from across the Open PHACTS partners. Open PHACTS An Introduction and Explanation March 2012 Acknowledgements: Contains contributions from across the Open PHACTS partners. Public Domain Drug Discovery Data: Pharma are accessing, processing,

More information

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper.

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper. Semantic Web Company PoolParty - Server PoolParty - Technical White Paper http://www.poolparty.biz Table of Contents Introduction... 3 PoolParty Technical Overview... 3 PoolParty Components Overview...

More information

Towards a Semantic Clinical Data Warehouse: A Case Study of Discovering Similar Genes

Towards a Semantic Clinical Data Warehouse: A Case Study of Discovering Similar Genes Towards a Semantic Clinical Data Warehouse: A Case Study of Discovering Similar Genes 2015-05-31, Know@LOD ESWC Benedikt Kämpgen, Horst Werner, Radwan Deeb, and Christof Bornhövd FZI FORSCHUNGSZENTRUM

More information

Acquiring Experience with Ontology and Vocabularies

Acquiring Experience with Ontology and Vocabularies Acquiring Experience with Ontology and Vocabularies Walt Melo Risa Mayan Jean Stanford The author's affiliation with The MITRE Corporation is provided for identification purposes only, and is not intended

More information

Semantic Integration with Apache Jena and Apache Stanbol

Semantic Integration with Apache Jena and Apache Stanbol Semantic Integration with Apache Jena and Apache Stanbol All Things Open Raleigh, NC Oct. 22, 2014 Overview Theory (~10 mins) Application Examples (~10 mins) Technical Details (~25 mins) What do we mean

More information

PROJECT PERIODIC REPORT

PROJECT PERIODIC REPORT PROJECT PERIODIC REPORT Grant Agreement number: 257403 Project acronym: CUBIST Project title: Combining and Uniting Business Intelligence and Semantic Technologies Funding Scheme: STREP Date of latest

More information

Protégé Plug-in Library: A Task-Oriented Tour

Protégé Plug-in Library: A Task-Oriented Tour Protégé Plug-in Library: A Task-Oriented Tour Tutorial at Seventh International Protégé Conference Bethesda MD, July 6 2004 Samson Tu and Jennifer Vendetti Stanford Medical Informatics Stanford University

More information

Orchestrating Music Queries via the Semantic Web

Orchestrating Music Queries via the Semantic Web Orchestrating Music Queries via the Semantic Web Milos Vukicevic, John Galletly American University in Bulgaria Blagoevgrad 2700 Bulgaria +359 73 888 466 milossmi@gmail.com, jgalletly@aubg.bg Abstract

More information

Scaling the Semantic Wall with AllegroGraph and TopBraid Composer. A Joint Webinar by TopQuadrant and Franz

Scaling the Semantic Wall with AllegroGraph and TopBraid Composer. A Joint Webinar by TopQuadrant and Franz Scaling the Semantic Wall with AllegroGraph and TopBraid Composer A Joint Webinar by TopQuadrant and Franz Dean Allemang Chief Scientist, TopQuadrant Inc. Jans Aasman CTO, Franz Inc. July 07 1 This Seminar

More information

Multi-agent and Semantic Web Systems: Linked Open Data

Multi-agent and Semantic Web Systems: Linked Open Data Multi-agent and Semantic Web Systems: Linked Open Data Fiona McNeill School of Informatics 14th February 2013 Fiona McNeill Multi-agent Semantic Web Systems: *lecture* Date 0/27 Jena Vcard 1: Triples Fiona

More information

Information Workbench

Information Workbench Information Workbench The Optique Technical Solution Christoph Pinkel, fluid Operations AG Optique: What is it, really? 3 Optique: End-user Access to Big Data 4 Optique: Scalable Access to Big Data 5 The

More information

A Knowledge Model Driven Solution for Web-Based Telemedicine Applications

A Knowledge Model Driven Solution for Web-Based Telemedicine Applications Medical Informatics in a United and Healthy Europe K.-P. Adlassnig et al. (Eds.) IOS Press, 2009 2009 European Federation for Medical Informatics. All rights reserved. doi:10.3233/978-1-60750-044-5-443

More information

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Fall 94-95

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Fall 94-95 ه عا ی Semantic Web Semantic Web Services Morteza Amini Sharif University of Technology Fall 94-95 Outline Semantic Web Services Basics Challenges in Web Services Semantics in Web Services Web Service

More information

Dartgrid: a Semantic Web Toolkit for Integrating Heterogeneous Relational Databases

Dartgrid: a Semantic Web Toolkit for Integrating Heterogeneous Relational Databases Dartgrid: a Semantic Web Toolkit for Integrating Heterogeneous Relational Databases Zhaohui Wu 1, Huajun Chen 1, Heng Wang 1, Yimin Wang 2, Yuxin Mao 1, Jinmin Tang 1, and Cunyin Zhou 1 1 College of Computer

More information

Expressive Querying of Semantic Databases with Incremental Query Rewriting

Expressive Querying of Semantic Databases with Incremental Query Rewriting Expressive Querying of Semantic Databases with Incremental Query Rewriting Alexandre Riazanov, UNB Saint John joint work with Marcelo A. T. Aragão, Manchester Univ. and Central Bank of Brazil AWOSS 10.2,

More information

Customisable Curation Workflows in Argo

Customisable Curation Workflows in Argo Customisable Curation Workflows in Argo Rafal Rak*, Riza Batista-Navarro, Andrew Rowley, Jacob Carter and Sophia Ananiadou National Centre for Text Mining, University of Manchester, UK *Corresponding author:

More information

User Guide. v Released June Advaita Corporation 2016

User Guide. v Released June Advaita Corporation 2016 User Guide v. 0.9 Released June 2016 Copyright Advaita Corporation 2016 Page 2 Table of Contents Table of Contents... 2 Background and Introduction... 4 Variant Calling Pipeline... 4 Annotation Information

More information

Mining the Biomedical Research Literature. Ken Baclawski

Mining the Biomedical Research Literature. Ken Baclawski Mining the Biomedical Research Literature Ken Baclawski Data Formats Flat files Spreadsheets Relational databases Web sites XML Documents Flexible very popular text format Self-describing records XML Documents

More information

Database of Curated Mutations (DoCM) ournal/v13/n10/full/nmeth.4000.

Database of Curated Mutations (DoCM)     ournal/v13/n10/full/nmeth.4000. Database of Curated Mutations (DoCM) http://docm.genome.wustl.edu/ http://www.nature.com/nmeth/j ournal/v13/n10/full/nmeth.4000.h tml Home Page Information in DoCM DoCM uses many data sources to compile

More information

WHO ICD11 Wiki LexWiki, Semantic MediaWiki and the International Classification of Diseases

WHO ICD11 Wiki LexWiki, Semantic MediaWiki and the International Classification of Diseases WHO ICD11 Wiki LexWiki, Semantic MediaWiki and the International Classification of Diseases Guoqian Jiang, PhD Harold Solbrig Division of Biomedical Statistics and Informatics Mayo Clinic College of Medicine

More information

OWL-DBC The Arrival of Scalable and Tractable OWL Reasoning for Enterprise Knowledge Bases

OWL-DBC The Arrival of Scalable and Tractable OWL Reasoning for Enterprise Knowledge Bases OWL-DBC The Arrival of Scalable and Tractable OWL Reasoning for Enterprise Knowledge Bases URL: [http://trowl.eu/owl- dbc/] Copyright @2013 the University of Aberdeen. All Rights Reserved This document

More information

A Dream of Software Engineers -- Service Orientation and Cloud Computing

A Dream of Software Engineers -- Service Orientation and Cloud Computing JICSIT2011 / ITAIC 2011 Keynote http://www.jicsit.org/ A Dream of Software Engineers -- Service Orientation and Cloud Computing Yinong Chen Arizona State University, Tempe, Arizona, U.S.A. JICSIT/ITAIC

More information