SlideShare a Scribd company logo
Tactical Formalization of Linked Open Data
@micheldumontier::OntologySummit2014:March 6,20141
Michel Dumontier, Ph.D.
Associate Professor of Medicine (Biomedical Informatics)
Stanford University
Linked Open Data provides an incredibly dynamic, rapidly
growing set of interlinked resources
@micheldumontier::OntologySummit2014:March 6,20142
@micheldumontier::OntologySummit2014:March 6,2014
Linked Data for the Life Sciences
3
Bio2RDF converts bio-data in RDF format and ensures
URI integrity by conferring with its registry of datasets
the simplicity of the triple makes it
easy to proliferate
@micheldumontier::OntologySummit2014:March 6,20144
but the lack of coordination makes Linked
Open Data is quite chaotic and unwieldy
@micheldumontier::OntologySummit2014:March 6,20145
Massive Proliferation of Ontologies / Vocabularies
@micheldumontier::OntologySummit2014:March 6,20146
Despite all the data, it’s still hard to find answers to questions
Because there are many ways to represent the same data
and each dataset represents it differently
@micheldumontier::OntologySummit2014:March 6,20147
uniprot:P05067
uniprot:Protein
is a
sio:gene
is a is a
Semantic data integration, consistency checking and
query answering over Bio2RDF with the
Semanticscience Integrated Ontology (SIO)
dataset
ontology
Knowledge Base
@micheldumontier::OntologySummit2014:March 6,2014
pharmgkb:PA30917
refseq:Protein
is a
is a
omim:189931
omim:Gene pharmgkb:Gene
Querying Bio2RDF Linked Open Data with a Global Schema. Alison Callahan, José Cruz-Toledo and
Michel Dumontier. Bio-ontologies 2012.
8
@micheldumontier::OntologySummit2014:March
9
SRIQ(D)
10700+ axioms
1300+ classes
201 object properties (inc. inverses)
1 datatype property
Bio2RDF and SIO powered SPARQL 1.1 federated query:
Find chemicals (from CTD) and proteins (from SGD) that
participate in the same process (from GOA)
SELECT ?chem, ?prot, ?proc
FROM <http://bio2rdf.org/ctd>
WHERE {
?chemical a sio:chemical-entity.
?chemical rdfs:label ?chem.
?chemical sio:is-participant-in ?process.
?process rdfs:label ?proc.
FILTER regex (?process, "http://bio2rdf.org/go:")
SERVICE <http://sgd.bio2rdf.org/sparql> {
?protein a sio:protein .
?protein sio:is-participant-in ?process.
?protein rdfs:label ?prot .
}
}
@micheldumontier::OntologySummit2014:March 6,201410
multiple formalizations of the same kind of
data has emerged, each with their own merit
@micheldumontier::OntologySummit2014:March 6,201411
Multi-Stakeholder Efforts to Standardize
Representations are Reasonable,
Long Term Strategies for Data Integration
@micheldumontier::OntologySummit2014:March 6,201412
tactical formalization
discovery of drug and disease pathway associations
@micheldumontier::OntologySummit2014:March 6,201413
Take what you need
and represent it in a way that directly serves your objective
Biological Pathways Define A
Biological Objective
def: A biological pathway is constituted by a
set of molecular components that undertake
some biological transformation to achieve a
stated objective
glycolysis : a pathway that converts glucose to
pyruvate
@micheldumontier::OntologySummit2014:March 6,201414
aberrant and pharmacological pathways
Q1. Can we identify pathways that are associated with a
particular disease or class of diseases?
Q2. Can we identify pathways are associated with a
particular drug or class of drugs?
drug
pathway
disease
@micheldumontier::OntologySummit2014:March 6,201415
Identification of
drug and disease enriched pathways
• Approach
– Integrate 3 datasets
• DrugBank, PharmGKB and CTD
– Integrate 7 terminologies
• MeSH, ATC, ChEBI, UMLS, SNOMED, ICD, DO
– Formalize
– Identify significant associations using enrichment
analysis over the fully inferred knowledge base
Identifying aberrant pathways through integrated analysis of knowledge in pharmacogenomics.
Bioinformatics. 2012. @micheldumontier::OntologySummit2014:March 6,201416
Have you heard of OWL?
@micheldumontier::OntologySummit2014:March 6,201417
RDF triples are underspecified bits of
knowledge. OWL can help you nail
down what was really meant
Natural language statements:
The nucleus is a key part of the cell.
RDF triple:
<nucleus> <part-of> <cell>
OWL
• Nucleus and Cell are classes
• part-of is a relation between 2 instances
• Formalization: every instance of Nucleus ‘is part of’ at least
one instance of Cell
OWL axiom:
Nucleus subClassOf part-of some Cell 18@micheldumontier::OntologySummit2014:March 6,201418
assigning meaning to triples:
domain expertise + logics required!
Convert RDF triples into OWL axioms.
Triple in RDF:
<C1 R C2>
• C1 and C2 are classes, R a relation between 2 classes
• intended meaning:
o C1 SubClassOf: C2
o C1 SubClassOf: R some C2
o C1 SubClassOf: R only C2
o C2 SubClassOf: R some C1
o C1 SubClassOf: S some C2
o C1 SubClassOf: R some (S only C2)
o C1 DisjointFrom: C2
o C1 and C2 SubClassOf: owl:Nothing
o R some C1 DisjointFrom: R some C2
o C1 EquivalentClasses C2
o ...
• in general: P(C1, C2), where P is an OWL axiom (template)
Challenge:
Formalizing data
requires one to commit
to a particular meaning
– to make an ontological
commitment
@micheldumontier::OntologySummit2014:March 6,201419
Axiom Patterns for Triples
<nucleus> <part-of> <cell>
?X part-of ?Y
translated to axiom pattern
?X subClassOf: part-of some ?Y
-> Nucleus subClassOf: part-of some Cell
@micheldumontier::OntologySummit2014:March 6,201420
mercaptopurine
[pharmgkb:PA450379]
mercaptopurine
[drugbank:DB01033]
purine-6-thiol
[CHEBI:2208]
Class Equivalence
mercaptopurine
[ATC:L01BB02]
Top Level Classes
(disjointness)
drug diseasegenepathway
property chains
Class subsumption
mercaptopurine
[mesh:D015122]
Reciprocal
Existentials
drug disease
pathway gene
Formalized as an OWL-EL ontology
650,000+ classes, 3.2M subClassOf axioms, 75,000
equivalentClass axioms
@micheldumontier::OntologySummit2014:March 6,201421
Benefits: Enhanced Query Capability
– Use any mapped terminology to query a target resource.
– Use knowledge in target ontologies to formulate more
precise questions
• ask for drugs that are associated with diseases of the joint:
‘Chikungunya’ (do:0050012) is defined as a viral infectious disease
located in the ‘joint’ (fma:7490) and caused by a ‘Chikungunya
virus’ (taxon:37124).
– Learn relationships that are inferred by automated
reasoning.
• alcohol (ChEBI:30879) is associated with alcoholism (PA443309)
since alcoholism is directly associated with ethanol (CHEBI:16236)
• ‘parasitic infectious disease’ (do:0001398) retrieves 129 disease
associated drugs, 15 more than are directly associated.
@micheldumontier::OntologySummit2014:March 6,201422
Knowledge Discovery through Data
Integration and Enrichment Analysis
• OntoFunc: Tool to discover significant associations between sets of objects
and ontology categories. enrichment of attribute among a selected set of
input items as compared to a reference set. hypergeometric or the
binomial distribution, Fisher's exact test, or a chi-square test.
• We found 22,653 disease-pathway associations, where for each pathway
we find genes that are linked to disease.
– Mood disorder (do:3324) associated with Zidovudine Pathway
(pharmgkb:PA165859361). Zidovudine is used to treat HIV/AIDS. Side
effects include fatigue, headache, myalgia, malaise and anorexia
• We found 13,826 pathway-chemical associations
– Clopidogrel (chebi:37941) associated with Endothelin signaling
pathway (pharmgkb:PA164728163). Clopidogrel inhibits platelet
aggregation and prolongs bleeding time. Endothelins are proteins that
constrict blood vessels and raise blood pressure.
@micheldumontier::OntologySummit2014:March 6,201423
Tactical Formalization + Automated Reasoning
Offers Compelling Value for Certain Problems
We need to be smart about the goal, and how best to achieve it.
Tactical formalization is another tool in the toolbox.
We’ve formalized data as OWL ontologies:
• To identify mistakes in human curated knowledge
• To identify conflicting meaning in terms
• To identify mistakes in the representation of RDF data
o incorrect use of relations
o incorrect assertion of identity (owl:sameAs)
• To verify, fix and exploit Linked Data through expressive OWL
reasoning
• To generate/infer new triples to write back into RDF and use for
efficient retrieval
Many other applications can be envisioned.
@micheldumontier::OntologySummit2014:March 6,201424
Acknowledgements
Bio2RDF Release 2:
Allison Callahan, Jose Cruz-Toledo, Peter Ansell
Aberrant Pathways: Robert Hoehndorf, Georgios Gkoutos
@micheldumontier::OntologySummit2014:March 6,201425
dumontierlab.com
michel.dumontier@stanford.edu
Website: http://dumontierlab.com
Presentations: http://slideshare.com/micheldumontier
@micheldumontier::OntologySummit2014:March 6,201426

More Related Content

PDF
Printout webinar r ax costanza 05 05-2020
PPTX
Amazon web services in the cloud computing landscape
PPTX
Big Data and the growing relevance of NoSQL
KEY
IT for Nursing | Internet & WWW
PDF
branding the nation the historical context
PPT
Cio Summit 2008
PPT
Cinch Inch Loss Plan Testimonials
Printout webinar r ax costanza 05 05-2020
Amazon web services in the cloud computing landscape
Big Data and the growing relevance of NoSQL
IT for Nursing | Internet & WWW
branding the nation the historical context
Cio Summit 2008
Cinch Inch Loss Plan Testimonials

Viewers also liked (20)

PPT
Chemistry Intro
PDF
Intro to Social Media
DOC
Maktjensen
PDF
Rims Metals and Mining Session
PDF
Using Big Data Analytics
PDF
Design thinking in efl context
PPT
Camp It, June 2012, How To Design Your Bi Architecture To Capitalize on New T...
PPTX
1st Network-of-BioThings Hackathon
PDF
Prezi polxtica lingxxstica
PPT
BigScrum - Scaling Teams to Programs
PPT
Technical Communication Lab Projects
PDF
La MutilacióN Del Ser Y El Tratamiento Del Cuerpo En La Vida ..
PPT
Presentation1
PPT
G4
PDF
OWLED2009: A platform for distributing and reasoning with OWL-EL knowledge ba...
PDF
Russian & English: Nastas Ltrs of Confirmation-Contributions
PPTX
Monaco201209
ODP
Colonna sonora in_openoffice
PPT
Adapting health systems to the challenge of diversity in the US and Europe
PDF
Line Upgrade Deferral Scenarios for Distributed Renewable Energy Resources
Chemistry Intro
Intro to Social Media
Maktjensen
Rims Metals and Mining Session
Using Big Data Analytics
Design thinking in efl context
Camp It, June 2012, How To Design Your Bi Architecture To Capitalize on New T...
1st Network-of-BioThings Hackathon
Prezi polxtica lingxxstica
BigScrum - Scaling Teams to Programs
Technical Communication Lab Projects
La MutilacióN Del Ser Y El Tratamiento Del Cuerpo En La Vida ..
Presentation1
G4
OWLED2009: A platform for distributing and reasoning with OWL-EL knowledge ba...
Russian & English: Nastas Ltrs of Confirmation-Contributions
Monaco201209
Colonna sonora in_openoffice
Adapting health systems to the challenge of diversity in the US and Europe
Line Upgrade Deferral Scenarios for Distributed Renewable Energy Resources
Ad

Similar to Tactical Formalization of Linked Open Data (Ontology Summit 2014) (20)

PDF
Powering Scientific Discovery with the Semantic Web (VanBUG 2014)
PPTX
Semantic approaches for biomedical knowledge discovery - Discovery Science 20...
PPTX
Building a Network of Interoperable and Independently Produced Linked and Ope...
PDF
2016 ACS Semantic Approaches for Biochemical Knowledge Discovery
PDF
Use of open_linked_data_in_bioinformatics
PPT
Towards semantic systems chemical biology
PPTX
Generating Biomedical Hypotheses Using Semantic Web Technologies
PPTX
E.Gombocz: Semantics in a Box (SemTech 2013-04-30)
PPTX
Kboom phenoday-2016
PDF
Ontologies for Clinical Research - Assessment and Development
PPTX
All together now: piecing together the knowledge graph of life
PPTX
Bio2RDF and Beyond!
PPTX
Semantics as a service at EMBL-EBI
PPTX
Ontologies for big data
PPTX
Fostering Serendipity through Big Linked Data
PPTX
Semantic Web Technologies: A Paradigm for Medical Informatics
PPT
Reasoning Requirements for Bioscience
PPT
Simplifying semantics for biomedical applications
PPTX
Research - this time it's personal
PPTX
C:\fakepath\bioit world2010
Powering Scientific Discovery with the Semantic Web (VanBUG 2014)
Semantic approaches for biomedical knowledge discovery - Discovery Science 20...
Building a Network of Interoperable and Independently Produced Linked and Ope...
2016 ACS Semantic Approaches for Biochemical Knowledge Discovery
Use of open_linked_data_in_bioinformatics
Towards semantic systems chemical biology
Generating Biomedical Hypotheses Using Semantic Web Technologies
E.Gombocz: Semantics in a Box (SemTech 2013-04-30)
Kboom phenoday-2016
Ontologies for Clinical Research - Assessment and Development
All together now: piecing together the knowledge graph of life
Bio2RDF and Beyond!
Semantics as a service at EMBL-EBI
Ontologies for big data
Fostering Serendipity through Big Linked Data
Semantic Web Technologies: A Paradigm for Medical Informatics
Reasoning Requirements for Bioscience
Simplifying semantics for biomedical applications
Research - this time it's personal
C:\fakepath\bioit world2010
Ad

More from Michel Dumontier (20)

PPTX
Generating (useful) synthetic data for medical research and AI application
PDF
FAIR & AI Ready KGs for Explainable Predictions.pdf
PPTX
FAIR & AI Ready KGs for Explainable Predictions
PPTX
A metadata standard for Knowledge Graphs
PPTX
Data-Driven Discovery Science with FAIR Knowledge Graphs
PDF
Evaluating FAIRness
PPTX
The Role of the FAIR Guiding Principles for an effective Learning Health System
PPTX
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...
PPTX
The role of the FAIR Guiding Principles in a Learning Health System
PPTX
Acclerating biomedical discovery with an internet of FAIR data and services -...
PPTX
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...
PPTX
Are we FAIR yet? And will it be worth it?
PPTX
The Future of FAIR Data: An international social, legal and technological inf...
PDF
Keynote at the 2018 Maastricht University Dinner
PPTX
The future of science and business - a UM Star Lecture
PPTX
Are we FAIR yet?
PPTX
Developing and assessing FAIR digital resources
PPTX
Advancing Biomedical Knowledge Reuse with FAIR
PPTX
A Framework to develop the FAIR Metrics
PPTX
FAIR principles and metrics for evaluation
Generating (useful) synthetic data for medical research and AI application
FAIR & AI Ready KGs for Explainable Predictions.pdf
FAIR & AI Ready KGs for Explainable Predictions
A metadata standard for Knowledge Graphs
Data-Driven Discovery Science with FAIR Knowledge Graphs
Evaluating FAIRness
The Role of the FAIR Guiding Principles for an effective Learning Health System
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...
The role of the FAIR Guiding Principles in a Learning Health System
Acclerating biomedical discovery with an internet of FAIR data and services -...
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...
Are we FAIR yet? And will it be worth it?
The Future of FAIR Data: An international social, legal and technological inf...
Keynote at the 2018 Maastricht University Dinner
The future of science and business - a UM Star Lecture
Are we FAIR yet?
Developing and assessing FAIR digital resources
Advancing Biomedical Knowledge Reuse with FAIR
A Framework to develop the FAIR Metrics
FAIR principles and metrics for evaluation

Recently uploaded (20)

PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
cuic standard and advanced reporting.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPT
Teaching material agriculture food technology
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Encapsulation theory and applications.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
The AUB Centre for AI in Media Proposal.docx
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Reach Out and Touch Someone: Haptics and Empathic Computing
Spectral efficient network and resource selection model in 5G networks
Mobile App Security Testing_ A Comprehensive Guide.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
cuic standard and advanced reporting.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
MYSQL Presentation for SQL database connectivity
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Teaching material agriculture food technology
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Encapsulation theory and applications.pdf

Tactical Formalization of Linked Open Data (Ontology Summit 2014)

  • 1. Tactical Formalization of Linked Open Data @micheldumontier::OntologySummit2014:March 6,20141 Michel Dumontier, Ph.D. Associate Professor of Medicine (Biomedical Informatics) Stanford University
  • 2. Linked Open Data provides an incredibly dynamic, rapidly growing set of interlinked resources @micheldumontier::OntologySummit2014:March 6,20142
  • 3. @micheldumontier::OntologySummit2014:March 6,2014 Linked Data for the Life Sciences 3 Bio2RDF converts bio-data in RDF format and ensures URI integrity by conferring with its registry of datasets
  • 4. the simplicity of the triple makes it easy to proliferate @micheldumontier::OntologySummit2014:March 6,20144
  • 5. but the lack of coordination makes Linked Open Data is quite chaotic and unwieldy @micheldumontier::OntologySummit2014:March 6,20145
  • 6. Massive Proliferation of Ontologies / Vocabularies @micheldumontier::OntologySummit2014:March 6,20146
  • 7. Despite all the data, it’s still hard to find answers to questions Because there are many ways to represent the same data and each dataset represents it differently @micheldumontier::OntologySummit2014:March 6,20147
  • 8. uniprot:P05067 uniprot:Protein is a sio:gene is a is a Semantic data integration, consistency checking and query answering over Bio2RDF with the Semanticscience Integrated Ontology (SIO) dataset ontology Knowledge Base @micheldumontier::OntologySummit2014:March 6,2014 pharmgkb:PA30917 refseq:Protein is a is a omim:189931 omim:Gene pharmgkb:Gene Querying Bio2RDF Linked Open Data with a Global Schema. Alison Callahan, José Cruz-Toledo and Michel Dumontier. Bio-ontologies 2012. 8
  • 9. @micheldumontier::OntologySummit2014:March 9 SRIQ(D) 10700+ axioms 1300+ classes 201 object properties (inc. inverses) 1 datatype property
  • 10. Bio2RDF and SIO powered SPARQL 1.1 federated query: Find chemicals (from CTD) and proteins (from SGD) that participate in the same process (from GOA) SELECT ?chem, ?prot, ?proc FROM <http://bio2rdf.org/ctd> WHERE { ?chemical a sio:chemical-entity. ?chemical rdfs:label ?chem. ?chemical sio:is-participant-in ?process. ?process rdfs:label ?proc. FILTER regex (?process, "http://bio2rdf.org/go:") SERVICE <http://sgd.bio2rdf.org/sparql> { ?protein a sio:protein . ?protein sio:is-participant-in ?process. ?protein rdfs:label ?prot . } } @micheldumontier::OntologySummit2014:March 6,201410
  • 11. multiple formalizations of the same kind of data has emerged, each with their own merit @micheldumontier::OntologySummit2014:March 6,201411
  • 12. Multi-Stakeholder Efforts to Standardize Representations are Reasonable, Long Term Strategies for Data Integration @micheldumontier::OntologySummit2014:March 6,201412
  • 13. tactical formalization discovery of drug and disease pathway associations @micheldumontier::OntologySummit2014:March 6,201413 Take what you need and represent it in a way that directly serves your objective
  • 14. Biological Pathways Define A Biological Objective def: A biological pathway is constituted by a set of molecular components that undertake some biological transformation to achieve a stated objective glycolysis : a pathway that converts glucose to pyruvate @micheldumontier::OntologySummit2014:March 6,201414
  • 15. aberrant and pharmacological pathways Q1. Can we identify pathways that are associated with a particular disease or class of diseases? Q2. Can we identify pathways are associated with a particular drug or class of drugs? drug pathway disease @micheldumontier::OntologySummit2014:March 6,201415
  • 16. Identification of drug and disease enriched pathways • Approach – Integrate 3 datasets • DrugBank, PharmGKB and CTD – Integrate 7 terminologies • MeSH, ATC, ChEBI, UMLS, SNOMED, ICD, DO – Formalize – Identify significant associations using enrichment analysis over the fully inferred knowledge base Identifying aberrant pathways through integrated analysis of knowledge in pharmacogenomics. Bioinformatics. 2012. @micheldumontier::OntologySummit2014:March 6,201416
  • 17. Have you heard of OWL? @micheldumontier::OntologySummit2014:March 6,201417
  • 18. RDF triples are underspecified bits of knowledge. OWL can help you nail down what was really meant Natural language statements: The nucleus is a key part of the cell. RDF triple: <nucleus> <part-of> <cell> OWL • Nucleus and Cell are classes • part-of is a relation between 2 instances • Formalization: every instance of Nucleus ‘is part of’ at least one instance of Cell OWL axiom: Nucleus subClassOf part-of some Cell 18@micheldumontier::OntologySummit2014:March 6,201418
  • 19. assigning meaning to triples: domain expertise + logics required! Convert RDF triples into OWL axioms. Triple in RDF: <C1 R C2> • C1 and C2 are classes, R a relation between 2 classes • intended meaning: o C1 SubClassOf: C2 o C1 SubClassOf: R some C2 o C1 SubClassOf: R only C2 o C2 SubClassOf: R some C1 o C1 SubClassOf: S some C2 o C1 SubClassOf: R some (S only C2) o C1 DisjointFrom: C2 o C1 and C2 SubClassOf: owl:Nothing o R some C1 DisjointFrom: R some C2 o C1 EquivalentClasses C2 o ... • in general: P(C1, C2), where P is an OWL axiom (template) Challenge: Formalizing data requires one to commit to a particular meaning – to make an ontological commitment @micheldumontier::OntologySummit2014:March 6,201419
  • 20. Axiom Patterns for Triples <nucleus> <part-of> <cell> ?X part-of ?Y translated to axiom pattern ?X subClassOf: part-of some ?Y -> Nucleus subClassOf: part-of some Cell @micheldumontier::OntologySummit2014:March 6,201420
  • 21. mercaptopurine [pharmgkb:PA450379] mercaptopurine [drugbank:DB01033] purine-6-thiol [CHEBI:2208] Class Equivalence mercaptopurine [ATC:L01BB02] Top Level Classes (disjointness) drug diseasegenepathway property chains Class subsumption mercaptopurine [mesh:D015122] Reciprocal Existentials drug disease pathway gene Formalized as an OWL-EL ontology 650,000+ classes, 3.2M subClassOf axioms, 75,000 equivalentClass axioms @micheldumontier::OntologySummit2014:March 6,201421
  • 22. Benefits: Enhanced Query Capability – Use any mapped terminology to query a target resource. – Use knowledge in target ontologies to formulate more precise questions • ask for drugs that are associated with diseases of the joint: ‘Chikungunya’ (do:0050012) is defined as a viral infectious disease located in the ‘joint’ (fma:7490) and caused by a ‘Chikungunya virus’ (taxon:37124). – Learn relationships that are inferred by automated reasoning. • alcohol (ChEBI:30879) is associated with alcoholism (PA443309) since alcoholism is directly associated with ethanol (CHEBI:16236) • ‘parasitic infectious disease’ (do:0001398) retrieves 129 disease associated drugs, 15 more than are directly associated. @micheldumontier::OntologySummit2014:March 6,201422
  • 23. Knowledge Discovery through Data Integration and Enrichment Analysis • OntoFunc: Tool to discover significant associations between sets of objects and ontology categories. enrichment of attribute among a selected set of input items as compared to a reference set. hypergeometric or the binomial distribution, Fisher's exact test, or a chi-square test. • We found 22,653 disease-pathway associations, where for each pathway we find genes that are linked to disease. – Mood disorder (do:3324) associated with Zidovudine Pathway (pharmgkb:PA165859361). Zidovudine is used to treat HIV/AIDS. Side effects include fatigue, headache, myalgia, malaise and anorexia • We found 13,826 pathway-chemical associations – Clopidogrel (chebi:37941) associated with Endothelin signaling pathway (pharmgkb:PA164728163). Clopidogrel inhibits platelet aggregation and prolongs bleeding time. Endothelins are proteins that constrict blood vessels and raise blood pressure. @micheldumontier::OntologySummit2014:March 6,201423
  • 24. Tactical Formalization + Automated Reasoning Offers Compelling Value for Certain Problems We need to be smart about the goal, and how best to achieve it. Tactical formalization is another tool in the toolbox. We’ve formalized data as OWL ontologies: • To identify mistakes in human curated knowledge • To identify conflicting meaning in terms • To identify mistakes in the representation of RDF data o incorrect use of relations o incorrect assertion of identity (owl:sameAs) • To verify, fix and exploit Linked Data through expressive OWL reasoning • To generate/infer new triples to write back into RDF and use for efficient retrieval Many other applications can be envisioned. @micheldumontier::OntologySummit2014:March 6,201424
  • 25. Acknowledgements Bio2RDF Release 2: Allison Callahan, Jose Cruz-Toledo, Peter Ansell Aberrant Pathways: Robert Hoehndorf, Georgios Gkoutos @micheldumontier::OntologySummit2014:March 6,201425