SlideShare une entreprise Scribd logo
1  sur  46
Generating (and Testing) Biomedical Hypotheses
Using Semantic Web Technologies

Michel Dumontier, Ph.D.
Associate Professor of Medicine (Biomedical Informatics)
Stanford University

1

@micheldumontier::AAAI-FSW:Nov 16, 2013
2

@micheldumontier::AAAI-FSW:Nov 16, 2013
Science, it works ******

3

@micheldumontier::AAAI-FSW:Nov 16, 2013
We use the biomedical literature to find out what we
believe to be true

4

@micheldumontier::AAAI-FSW:Nov 16, 2013
we need to access to the most recent biomedical data
(problems: access, format, identifiers & linking)

5

@micheldumontier::AAAI-FSW:Nov 16, 2013
we also need access to the most effective software
to analyze, predict and evaluate
(problems: OS, versioning, input/output formats)

6

@micheldumontier::AAAI-FSW:Nov 16, 2013
we build support for our hypotheses by constructing
and (partly) reusing fairly sophisticated workflows

7

@micheldumontier::AAAI-FSW:Nov 16, 2013
Wouldn’t it be great if we could just find the evidence
required to support or dispute a scientific hypothesis using
the most up-to-date and relevant data, tools and scientific
knowledge?
8

@micheldumontier::AAAI-FSW:Nov 16, 2013
madness!
1. Build a massive network of interconnected
data and software using web standards
2. Develop methods to generate and test
hypotheses across these data
1. tactical formalization
2. uncovering associations
3. evidence gathering

3. Contribute back to the global knowledge
graph
9

@micheldumontier::AAAI-FSW:Nov 16, 2013
The Semantic Web
is the new global web of knowledge
standards for publishing, sharing and querying
facts, expert knowledge and services
scalable approach for the discovery
of independently formulated
and distributed knowledge

10

@micheldumontier::AAAI-FSW:Nov 16, 2013
we’re building an incredible network of linked data

11 Linking Open Data cloud diagram, by Richard Cyganiak and Anja Jentzsch

@micheldumontier::AAAI-FSW:Nov 16, 2013
Bio2RDF Linked Data Map

Bio2RDF Release 2: Improved coverage, interoperability and provenance of Life Science Linked Data . ESWC 2013.
12

@micheldumontier::AAAI-FSW:Nov 16, 2013
At the heart of Linked Data for the Life Sciences

chemicals/drugs/formulations,
genomes/genes/proteins, domains
Interactions, complexes & pathways
animal models and phenotypes
Disease, genetic markers,
treatments
Terminologies & publications

• Free and open source
• Uses Semantic Web standards
• Release 2 (Jan 2013): 1B+ interlinked statements from 19 conventional and high
value datasets
• Includes provenance, statistics
• Partnerships with EBI, NCBI, DBCLS, NCBO, OpenPHACTS, and commercial tool
providers

13

A Callahan, J Cruz-Toledo, M Dumontier. Querying Bio2RDF Linked Open Data with a Global Schema.
2013. Journal of Biomedical Semantics. 4(Suppl 1):S1.
@micheldumontier::AAAI-FSW:Nov 16, 2013
Resource Description Framework
• It’s a language to represent knowledge
– Logic-based formalism -> automated reasoning
– graph-like properties -> data analysis

• Good for
– Describing in terms of type, attributes, relations
– Integrating data from different sources
– Sharing the data (W3C standard)
– Reuse what is available, develop what you’re
missing.
14

Dumontier::FDA:Nov 15,2013
drugbank_vocabulary:Drug

rdf:type
rdfs:label
drugbank:DB00586

Diclofenac [drugbank:DB00586]

drugbank_vocabulary:targets
drugbank_target:290

rdfs:label

Prostaglandin G/H synthase 2
[drugbank_target:290]

rdf:type
drugbank_vocabulary:Target
15

Dumontier::FDA:Nov 15,2013
The linked data network expands
with every reference
DrugBank

drugbank_vocabulary:Drug

rdf:type
rdfs:label
drugbank:DB00586

diclofenac [drugbank:DB00586]

pharmgkb_vocabulary:xref
pharmgkb:PA449293

rdfs:label

PharmGKB

diclofenac [pharmgkb:PA449293]

pharmgkb_vocabulary:Drug
16

Dumontier::FDA:Nov 15,2013
Federated Queries over Independent
SPARQL EndPoints
Get all protein catabolic processes (and more specific) from biomodels

SELECT ?go ?label count(distinct ?x)
WHERE {
service <http://bioportal.bio2rdf.org/sparql> {
?go rdfs:label ?label .
?go rdfs:subClassOf ?tgo
?tgo rdfs:label ?tlabel .
FILTER regex(?tlabel, "^protein catabolic process")
}
service <http://biomodels.bio2rdf.org/sparql> {
?x <http://bio2rdf.org/biopax_vocabulary:identical-to> ?go .
?x a <http://www.biopax.org/release/biopax-level3.owl#BiochemicalReaction> .
}
}

17

@micheldumontier::AAAI-FSW:Nov 16, 2013
Bio2RDF: 1M+ SPARQL queries per month
UniProt: 6.4M queries per month
EBI: 3.5M queries (Oct 2013)

18

@micheldumontier::AAAI-FSW:Nov 16, 2013
Directions
• research
– approaches for data publication
– methods for large scale data reduction
– methods for mining associations

• service
– coverage, quality and licensing
– better user interfaces
– sustainability of service
19

@micheldumontier::AAAI-FSW:Nov 16, 2013
tactical formalization
a. discovery of drug and disease pathway associations
b. prediction of drug targets using phenotypes

20

@micheldumontier::AAAI-FSW:Nov 16, 2013
ontology as a
strategy to formally
represent and
integrate knowledge

21

@micheldumontier::AAAI-FSW:Nov 16, 2013
Have you heard of OWL?

22

@micheldumontier::AAAI-FSW:Nov 16, 2013
Identification of
disease enriched pathways
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

23

@micheldumontier::AAAI-FSW:Nov 16, 2013
aberrant pathways
which pathways are associated with disease?
Which pathways can be perturbed by drugs?
disease
pathway

drug
24

@micheldumontier::AAAI-FSW:Nov 16, 2013
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
– Identify significant pathways via enrichment
analysis over the fully inferred knowledge base

• Formalized as an OWL-EL ontology
– 650,000+ classes, 3.2M subClassOf axioms, 75,000
equivalentClass axioms
25

Identifying aberrant pathways through integrated analysis of knowledge in pharmacogenomics.
Bioinformatics. 2012.
@micheldumontier::AAAI-FSW:Nov 16, 2013
Top Level Classes
(disjointness)

pathway

drug

gene

disease
Reciprocal
Existentials

Class subsumption

mercaptopurine
[pharmgkb:PA450379]

purine-6-thiol
[CHEBI:2208]

Class Equivalence
mercaptopurine
[drugbank:DB01033]

mercaptopurine
[mesh:D015122]
mercaptopurine
[ATC:L01BB02]

drug
property chains

pathway

drug
disease

gene
26

@micheldumontier::AAAI-FSW:Nov 16, 2013
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.

27

@micheldumontier::AAAI-FSW:Nov 16, 2013
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 for treating 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). Endothelins are proteins that
constrict blood vessels and raise blood pressure. Clopidogrel inhibits
platelet aggregation and prolongs bleeding time.
28

@micheldumontier::AAAI-FSW:Nov 16, 2013
PhenomeDrug
A computational approach to predict drug
targets, drug effects, and drug indications using
phenotypic information

Mouse model phenotypes provide information about human drug targets.
Hoehndorf R, Hiebert T, Hardy NW, Schofield PN, Gkoutos GV, Dumontier M.
Bioinformatics. 2013.
29

@micheldumontier::AAAI-FSW:Nov 16, 2013
animal models provide insight for on target effects
• In the majority of 100 best selling drugs ($148B in US
alone), there is a direct correlation between knockout
phenotype and drug effect
• Gastroesophageal reflux
– Proton pump inhibitors (e.g Prilosec - $5B)
– KO of alpha or beta unit of H/K ATPase are achlorhydric (normal
pH) in stomach compared to wild type (pH 3-5) when exposed
to acidic solution

• Immunological Indications
– Anti-histamines (Claritin, Allegra, Zyrtec)
– KO of histamine H1 receptor leads to decreased responsiveness
of immune system
– Predicts on target effects : drowsiness, reduced anxiety
Zambrowicz and Sands. Nat Rev Drug Disc. 2003.
30

@micheldumontier::AAAI-FSW:Nov 16, 2013
Identifying drug targets
from mouse knock-out phenotypes
Main idea: if a drug’s phenotypes matches the phenotypes of a
null model, this suggests that the drug is an inhibitor of the gene
phenotypes

similar
effects

non-functional
gene model

drug

ortholog

gene
31

inhibits
human gene
@micheldumontier::AAAI-FSW:Nov 16, 2013
Terminological Interoperability
(we must compare apples with apples)
Mouse
Phenotypes

PhenomeNet

Mammalian
Phenotype
Ontology

PhenomeDrug

Drug effects
(mappings from UMLS to DO, NBO, MP)
@micheldumontier::AAAI-FSW:Nov 16, 2013
Semantic Similarity
Given a drug effect profile D and a mouse model M, we
compute the semantic similarity as an information weighted
Jaccard metric.

The similarity measure used is non-symmetrical and
determines the amount of information about a drug effect
profile D that is covered by a set of mouse model
phenotypes M.

33

@micheldumontier::AAAI-FSW:Nov 16, 2013
null models do well in predicting
targets of drug inhibitors
• 14,682 drugs; 7,255 mouse genotypes
• Validation against known and predicted inhibitor-target pairs
– 0.739 ROC AUC for human targets (DrugBank)
– 0.736 ROC AUC for mouse targets (STITCH)
– 0.705 ROC AUC for human targets (STITCH)

• diclofenac (STITCH:000003032)
– NSAID used to treat pain, osteoarthritis and rheumatoid arthritis
– Drug effects include liver inflammation (hepatitis), swelling of liver
(hepatomegaly), redness of skin (erythema)
– 49% explained by PPARg knockout
• peroxisome proliferator activated receptor gamma (PPARg) regulates metabolism,
proliferation, inflammation and differentiation,
• Diclofenac is a known inhibitor

– 46% explained by COX-2 knockout
• Diclofenac is a known inhibitor
@micheldumontier::AAAI-FSW:Nov 16, 2013
Finding evidence to support or dispute a hypothesis takes
some digging around

35

@micheldumontier::AAAI-FSW:Nov 16, 2013
FDA Use Case:
TKI non-QT Cardiotoxicity
• Tyrosine Kinase Inhibitors (TKI)
– Imatinib, Sorafenib, Sunitinib, Dasatinib, Nilotinib, Lapatinib
– Used to treat cancer
– Linked to cardiotoxicity.

• FDA launched drug safety program to detect toxicity
– Need to integrate data and ontologies (Abernethy, CPT 2011)
– Abernethy (2013) suggest using public data in genetics,
pharmacology, toxicology, systems biology, to
predict/validate adverse events

• What evidence could we gather to give credence that
TKI’s causes non-QT cardiotoxicity?
36

@micheldumontier::AAAI-FSW:Nov 16, 2013
HyQue
• The goal of HyQue is retrieve and evaluate evidence
that supports/disputes a hypothesis
– hypotheses are described as a set of events
• e.g. binding, inhibition, phenotypic effect

– events are associated with types of evidence
• a query is written to retrieve data
• a weight is assigned to provide significance

• Hypotheses are written by people who seek answers
• data retrieval rules are written by people who know the
data and how it should be interpreted 
1. HyQue: Evaluating hypotheses using Semantic Web technologies. J Biomed Semantics. 2011 May 17;2 Suppl 2:S3.
2. Evaluating scientific hypotheses using the SPARQL Inferencing Notation. Extended Semantic Web Conference (ESWC
2012). Heraklion, Crete. May 27-31, 2012.
37

@micheldumontier::AAAI-FSW:Nov 16, 2013
HyQue: A Semantic Web Application

Hypothesis

Evaluation

Data

Ontologies

Software

@micheldumontier::AAAI-

38
SPIN functions
to evaluate TKI Cardiotoxicity
• Effects [r3.sider, lit]
• Does the drug have known cardiotoxic effects?

• Models [r2.mgi]
• Are there cardiotoxic phenotypes in null mouse models of target genes?

• Assays [ebi.chembl]
• Is hERG inhibited?

• Is the drug TUNEL positive?

• Targets [r2.drugbank, lit]
• Does the drug inhibit cardiotoxic-related proteins?
• RAF1, PDFGFR, VEGFR, AMPK

39

@micheldumontier::AAAI-FSW:Nov 16, 2013
40

@micheldumontier::AAAI-FSW:Nov 16, 2013
http://bio2rdf.org/drugbank:DB01268
41

@micheldumontier::AAAI-FSW:Nov 16, 2013
42

@micheldumontier::AAAI-FSW:Nov 16, 2013
43

@micheldumontier::AAAI-FSW:Nov 16, 2013
In Summary
• This talk was about making sense of the
structured data we already have
• RDF-based Linked Open Data acts as a substrate
for query answering and task-based formalization
in OWL
• Discovery through the generation of testable
hypotheses in the target domain.
• The next big challenge lies in capturing the
output of computational experiments just as
much as extracting/formalizing user-contributed
knowledge .
44

@micheldumontier::AAAI-FSW:Nov 16, 2013
Acknowledgements
Bio2RDF Release 2:
Allison Callahan, Jose Cruz-Toledo, Peter Ansell

Aberrant Pathways: Robert Hoehndorf, Georgios Gkoutos
PhenomeDrug: Tanya Hiebert, Robert Hoehndorf, Georgios
Gkoutos, Paul Schofield
HyQue: Alison Callahan, Nigam Shah

45

@micheldumontier::AAAI-FSW:Nov 16, 2013
dumontierlab.com
michel.dumontier@stanford.edu
Website: http://dumontierlab.com
Presentations: http://slideshare.com/micheldumontier

46

@micheldumontier::AAAI-FSW:Nov 16, 2013

Contenu connexe

Tendances

dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...
dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...
dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...dkNET
 
Open Access and Property Rights on a Collision Course with Scholars
Open Access and Property Rights on a Collision Course with ScholarsOpen Access and Property Rights on a Collision Course with Scholars
Open Access and Property Rights on a Collision Course with ScholarsKimberly Yang
 
Howe et al. - 2015 - BioAssay Research Database (BARD) chemical biolog
Howe et al. - 2015 - BioAssay Research Database (BARD) chemical biologHowe et al. - 2015 - BioAssay Research Database (BARD) chemical biolog
Howe et al. - 2015 - BioAssay Research Database (BARD) chemical biologEleanor Howe
 
Natalya Csatari_Library Database and Website Search
Natalya Csatari_Library Database and Website SearchNatalya Csatari_Library Database and Website Search
Natalya Csatari_Library Database and Website SearchNatalya Csatari, RN, BSN,CM
 
Guide to Malaria Pharmacology, GEMM 2019
Guide to Malaria Pharmacology, GEMM 2019Guide to Malaria Pharmacology, GEMM 2019
Guide to Malaria Pharmacology, GEMM 2019Guide to PHARMACOLOGY
 
GuideToImmunopharmacology_SIF_Nov2019
GuideToImmunopharmacology_SIF_Nov2019GuideToImmunopharmacology_SIF_Nov2019
GuideToImmunopharmacology_SIF_Nov2019Guide to PHARMACOLOGY
 
GtoPDB_ELIXIR_UK_AllHands_update_Dec2019
GtoPDB_ELIXIR_UK_AllHands_update_Dec2019GtoPDB_ELIXIR_UK_AllHands_update_Dec2019
GtoPDB_ELIXIR_UK_AllHands_update_Dec2019Guide to PHARMACOLOGY
 
PubChem: a public chemical information resource for big data chemistry
PubChem: a public chemical information resource for big data chemistryPubChem: a public chemical information resource for big data chemistry
PubChem: a public chemical information resource for big data chemistrySunghwan Kim
 
PubChem as a resource for chemical information training
PubChem as a resource for chemical information trainingPubChem as a resource for chemical information training
PubChem as a resource for chemical information trainingSunghwan Kim
 
Antimalarial drug dscovery data disclosure
Antimalarial drug dscovery data disclosureAntimalarial drug dscovery data disclosure
Antimalarial drug dscovery data disclosureChris Southan
 
Toxicological information in PubChem
Toxicological information in PubChemToxicological information in PubChem
Toxicological information in PubChemSunghwan Kim
 
Searching for chemical information using PubChem
Searching for chemical information using PubChemSearching for chemical information using PubChem
Searching for chemical information using PubChemSunghwan Kim
 
Guide to Pharmacology Poster - ELIXIR All Hands 2020
Guide to Pharmacology Poster - ELIXIR All Hands 2020Guide to Pharmacology Poster - ELIXIR All Hands 2020
Guide to Pharmacology Poster - ELIXIR All Hands 2020Guide to PHARMACOLOGY
 
PubChem for chemical information literacy training
PubChem for chemical information literacy trainingPubChem for chemical information literacy training
PubChem for chemical information literacy trainingSunghwan Kim
 
PubChem for drug discovery in the age of big data and artificial intelligence
PubChem for drug discovery in the age of big data and artificial intelligencePubChem for drug discovery in the age of big data and artificial intelligence
PubChem for drug discovery in the age of big data and artificial intelligenceSunghwan Kim
 
Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...
Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...
Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...Frederik van den Broek
 
Making the most of phenotypes in ontology-based biomedical knowledge discovery
Making the most of phenotypes in ontology-based biomedical knowledge discoveryMaking the most of phenotypes in ontology-based biomedical knowledge discovery
Making the most of phenotypes in ontology-based biomedical knowledge discoveryMichel Dumontier
 
Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...
Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...
Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...Frederik van den Broek
 
Patent chemisty big bang: utilities for SMEs
Patent chemisty big bang: utilities for SMEsPatent chemisty big bang: utilities for SMEs
Patent chemisty big bang: utilities for SMEsChris Southan
 
GtoPdb and GtoImmuPdb in context
GtoPdb and GtoImmuPdb in contextGtoPdb and GtoImmuPdb in context
GtoPdb and GtoImmuPdb in contextChris Southan
 

Tendances (20)

dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...
dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...
dkNET Webinar: "The Microphysiology Systems Database (MPS-Db): A Platform For...
 
Open Access and Property Rights on a Collision Course with Scholars
Open Access and Property Rights on a Collision Course with ScholarsOpen Access and Property Rights on a Collision Course with Scholars
Open Access and Property Rights on a Collision Course with Scholars
 
Howe et al. - 2015 - BioAssay Research Database (BARD) chemical biolog
Howe et al. - 2015 - BioAssay Research Database (BARD) chemical biologHowe et al. - 2015 - BioAssay Research Database (BARD) chemical biolog
Howe et al. - 2015 - BioAssay Research Database (BARD) chemical biolog
 
Natalya Csatari_Library Database and Website Search
Natalya Csatari_Library Database and Website SearchNatalya Csatari_Library Database and Website Search
Natalya Csatari_Library Database and Website Search
 
Guide to Malaria Pharmacology, GEMM 2019
Guide to Malaria Pharmacology, GEMM 2019Guide to Malaria Pharmacology, GEMM 2019
Guide to Malaria Pharmacology, GEMM 2019
 
GuideToImmunopharmacology_SIF_Nov2019
GuideToImmunopharmacology_SIF_Nov2019GuideToImmunopharmacology_SIF_Nov2019
GuideToImmunopharmacology_SIF_Nov2019
 
GtoPDB_ELIXIR_UK_AllHands_update_Dec2019
GtoPDB_ELIXIR_UK_AllHands_update_Dec2019GtoPDB_ELIXIR_UK_AllHands_update_Dec2019
GtoPDB_ELIXIR_UK_AllHands_update_Dec2019
 
PubChem: a public chemical information resource for big data chemistry
PubChem: a public chemical information resource for big data chemistryPubChem: a public chemical information resource for big data chemistry
PubChem: a public chemical information resource for big data chemistry
 
PubChem as a resource for chemical information training
PubChem as a resource for chemical information trainingPubChem as a resource for chemical information training
PubChem as a resource for chemical information training
 
Antimalarial drug dscovery data disclosure
Antimalarial drug dscovery data disclosureAntimalarial drug dscovery data disclosure
Antimalarial drug dscovery data disclosure
 
Toxicological information in PubChem
Toxicological information in PubChemToxicological information in PubChem
Toxicological information in PubChem
 
Searching for chemical information using PubChem
Searching for chemical information using PubChemSearching for chemical information using PubChem
Searching for chemical information using PubChem
 
Guide to Pharmacology Poster - ELIXIR All Hands 2020
Guide to Pharmacology Poster - ELIXIR All Hands 2020Guide to Pharmacology Poster - ELIXIR All Hands 2020
Guide to Pharmacology Poster - ELIXIR All Hands 2020
 
PubChem for chemical information literacy training
PubChem for chemical information literacy trainingPubChem for chemical information literacy training
PubChem for chemical information literacy training
 
PubChem for drug discovery in the age of big data and artificial intelligence
PubChem for drug discovery in the age of big data and artificial intelligencePubChem for drug discovery in the age of big data and artificial intelligence
PubChem for drug discovery in the age of big data and artificial intelligence
 
Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...
Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...
Finding novel lead compounds in pesticide discovery inspired by pharmaceutica...
 
Making the most of phenotypes in ontology-based biomedical knowledge discovery
Making the most of phenotypes in ontology-based biomedical knowledge discoveryMaking the most of phenotypes in ontology-based biomedical knowledge discovery
Making the most of phenotypes in ontology-based biomedical knowledge discovery
 
Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...
Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...
Data-driven drug discovery for rare diseases - Tales from the trenches (CINF ...
 
Patent chemisty big bang: utilities for SMEs
Patent chemisty big bang: utilities for SMEsPatent chemisty big bang: utilities for SMEs
Patent chemisty big bang: utilities for SMEs
 
GtoPdb and GtoImmuPdb in context
GtoPdb and GtoImmuPdb in contextGtoPdb and GtoImmuPdb in context
GtoPdb and GtoImmuPdb in context
 

En vedette

Bio2RDF : A biological knowledge base for the Semantic Web
Bio2RDF : A biological knowledge base for the Semantic WebBio2RDF : A biological knowledge base for the Semantic Web
Bio2RDF : A biological knowledge base for the Semantic WebMichel Dumontier
 
Knowledge Discovery using an Integrated Semantic Web
Knowledge Discovery using an Integrated Semantic WebKnowledge Discovery using an Integrated Semantic Web
Knowledge Discovery using an Integrated Semantic WebMichel Dumontier
 
Curation of scientifica data: Challenges for repositories
Curation of scientifica data: Challenges for repositoriesCuration of scientifica data: Challenges for repositories
Curation of scientifica data: Challenges for repositoriesChris Rusbridge
 
Table mining and data curation from biomedical literature
Table mining and data curation from biomedical literatureTable mining and data curation from biomedical literature
Table mining and data curation from biomedical literatureNikola Milosevic
 
Knowledge management for integrative omics data analysis
Knowledge management for integrative omics data analysisKnowledge management for integrative omics data analysis
Knowledge management for integrative omics data analysisCOST action BM1006
 
Linux for bioinformatics
Linux for bioinformaticsLinux for bioinformatics
Linux for bioinformaticscursoNGS
 
Semantic Web from the 2013 Perspective
Semantic Web from the 2013 PerspectiveSemantic Web from the 2013 Perspective
Semantic Web from the 2013 PerspectiveAdrian Paschke
 
Tendencias Storage
Tendencias StorageTendencias Storage
Tendencias StorageFran Navarro
 
Workshop NGS data analysis - 2
Workshop NGS data analysis - 2Workshop NGS data analysis - 2
Workshop NGS data analysis - 2Maté Ongenaert
 
Crowdsourcing Linked Data Quality Assessment
Crowdsourcing Linked Data Quality AssessmentCrowdsourcing Linked Data Quality Assessment
Crowdsourcing Linked Data Quality AssessmentAmrapali Zaveri, PhD
 
Linked Data in Healthcare and Life Sciences
Linked Data in Healthcare and Life SciencesLinked Data in Healthcare and Life Sciences
Linked Data in Healthcare and Life SciencesJames G. Boram Kim
 
What Is Windows Azure
What Is Windows AzureWhat Is Windows Azure
What Is Windows AzureDominic Green
 
Reputation snapshot for the banking industry, 2012, final
Reputation snapshot for the banking industry, 2012, finalReputation snapshot for the banking industry, 2012, final
Reputation snapshot for the banking industry, 2012, finalDamjana Kocjanc
 
Writing An Introduction
Writing An IntroductionWriting An Introduction
Writing An Introductionbabybunini
 
Tema 5 1º bach tangencias y enlaces v4
Tema 5 1º bach tangencias y enlaces v4Tema 5 1º bach tangencias y enlaces v4
Tema 5 1º bach tangencias y enlaces v4qvrrafa
 

En vedette (20)

Data Science for the Win
Data Science for the WinData Science for the Win
Data Science for the Win
 
Bio2RDF : A biological knowledge base for the Semantic Web
Bio2RDF : A biological knowledge base for the Semantic WebBio2RDF : A biological knowledge base for the Semantic Web
Bio2RDF : A biological knowledge base for the Semantic Web
 
Knowledge Discovery using an Integrated Semantic Web
Knowledge Discovery using an Integrated Semantic WebKnowledge Discovery using an Integrated Semantic Web
Knowledge Discovery using an Integrated Semantic Web
 
Curation of scientifica data: Challenges for repositories
Curation of scientifica data: Challenges for repositoriesCuration of scientifica data: Challenges for repositories
Curation of scientifica data: Challenges for repositories
 
Table mining and data curation from biomedical literature
Table mining and data curation from biomedical literatureTable mining and data curation from biomedical literature
Table mining and data curation from biomedical literature
 
Knowledge management for integrative omics data analysis
Knowledge management for integrative omics data analysisKnowledge management for integrative omics data analysis
Knowledge management for integrative omics data analysis
 
Linux for bioinformatics
Linux for bioinformaticsLinux for bioinformatics
Linux for bioinformatics
 
Semantic Web from the 2013 Perspective
Semantic Web from the 2013 PerspectiveSemantic Web from the 2013 Perspective
Semantic Web from the 2013 Perspective
 
Bio2RDF @ W3C HCLS2009
Bio2RDF @ W3C HCLS2009Bio2RDF @ W3C HCLS2009
Bio2RDF @ W3C HCLS2009
 
Tendencias Storage
Tendencias StorageTendencias Storage
Tendencias Storage
 
Workshop NGS data analysis - 2
Workshop NGS data analysis - 2Workshop NGS data analysis - 2
Workshop NGS data analysis - 2
 
Crowdsourcing Linked Data Quality Assessment
Crowdsourcing Linked Data Quality AssessmentCrowdsourcing Linked Data Quality Assessment
Crowdsourcing Linked Data Quality Assessment
 
Linked Data in Healthcare and Life Sciences
Linked Data in Healthcare and Life SciencesLinked Data in Healthcare and Life Sciences
Linked Data in Healthcare and Life Sciences
 
BC#2
BC#2BC#2
BC#2
 
Flowers
FlowersFlowers
Flowers
 
What Is Windows Azure
What Is Windows AzureWhat Is Windows Azure
What Is Windows Azure
 
Web 2.0
Web 2.0Web 2.0
Web 2.0
 
Reputation snapshot for the banking industry, 2012, final
Reputation snapshot for the banking industry, 2012, finalReputation snapshot for the banking industry, 2012, final
Reputation snapshot for the banking industry, 2012, final
 
Writing An Introduction
Writing An IntroductionWriting An Introduction
Writing An Introduction
 
Tema 5 1º bach tangencias y enlaces v4
Tema 5 1º bach tangencias y enlaces v4Tema 5 1º bach tangencias y enlaces v4
Tema 5 1º bach tangencias y enlaces v4
 

Similaire à Generating Biomedical Hypotheses Using Semantic Web Technologies

Tactical Formalization of Linked Open Data (Ontology Summit 2014)
Tactical Formalization of Linked Open Data (Ontology Summit 2014)Tactical Formalization of Linked Open Data (Ontology Summit 2014)
Tactical Formalization of Linked Open Data (Ontology Summit 2014)Michel Dumontier
 
Building a Network of Interoperable and Independently Produced Linked and Ope...
Building a Network of Interoperable and Independently Produced Linked and Ope...Building a Network of Interoperable and Independently Produced Linked and Ope...
Building a Network of Interoperable and Independently Produced Linked and Ope...Michel Dumontier
 
MseqDR consortium: a grass-roots effort to establish a global resource aimed ...
MseqDR consortium: a grass-roots effort to establish a global resource aimed ...MseqDR consortium: a grass-roots effort to establish a global resource aimed ...
MseqDR consortium: a grass-roots effort to establish a global resource aimed ...Human Variome Project
 
Open science and medical evidence generation - Kees van Bochove - The Hyve
Open science and medical evidence generation - Kees van Bochove - The HyveOpen science and medical evidence generation - Kees van Bochove - The Hyve
Open science and medical evidence generation - Kees van Bochove - The HyveKees van Bochove
 
WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...
WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...
WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...DATAVERSITY
 
The Monarch Initiative: From Model Organism to Precision Medicine
The Monarch Initiative: From Model Organism to Precision MedicineThe Monarch Initiative: From Model Organism to Precision Medicine
The Monarch Initiative: From Model Organism to Precision Medicinemhaendel
 
The Vision for Data @ the NIH
The Vision for Data @ the NIHThe Vision for Data @ the NIH
The Vision for Data @ the NIHPhilip Bourne
 
Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...
Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...
Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...Philip Bourne
 
Data Mining and Big Data Analytics in Pharma
Data Mining and Big Data Analytics in Pharma Data Mining and Big Data Analytics in Pharma
Data Mining and Big Data Analytics in Pharma Ankur Khanna
 
GenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.ca
GenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.caGenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.ca
GenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.cafionabrinkman
 
Advancing Translational Research With The Semantic Web
Advancing Translational Research With The Semantic WebAdvancing Translational Research With The Semantic Web
Advancing Translational Research With The Semantic WebJanelle Martinez
 
Acquiring and representing drug-drug interaction knowledge and evidence, Litm...
Acquiring and representing drug-drug interaction knowledge and evidence, Litm...Acquiring and representing drug-drug interaction knowledge and evidence, Litm...
Acquiring and representing drug-drug interaction knowledge and evidence, Litm...jodischneider
 
Wimmics seminar--drug interaction knowledge base, micropublication, open anno...
Wimmics seminar--drug interaction knowledge base, micropublication, open anno...Wimmics seminar--drug interaction knowledge base, micropublication, open anno...
Wimmics seminar--drug interaction knowledge base, micropublication, open anno...jodischneider
 
dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020
dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020
dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020dkNET
 
Big Data, AI, and Pharma
Big Data, AI, and PharmaBig Data, AI, and Pharma
Big Data, AI, and PharmaAmit Sheth
 
IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016
IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016
IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016Guide to PHARMACOLOGY
 
Big Data Analytics in the Health Domain
Big Data Analytics in the Health DomainBig Data Analytics in the Health Domain
Big Data Analytics in the Health DomainBigData_Europe
 
Guide to PHARMACOLOGY: a web-Based Compendium for Research and Education
Guide to PHARMACOLOGY: a web-Based Compendium for Research and EducationGuide to PHARMACOLOGY: a web-Based Compendium for Research and Education
Guide to PHARMACOLOGY: a web-Based Compendium for Research and EducationChris Southan
 

Similaire à Generating Biomedical Hypotheses Using Semantic Web Technologies (20)

MURI Summer
MURI SummerMURI Summer
MURI Summer
 
Tactical Formalization of Linked Open Data (Ontology Summit 2014)
Tactical Formalization of Linked Open Data (Ontology Summit 2014)Tactical Formalization of Linked Open Data (Ontology Summit 2014)
Tactical Formalization of Linked Open Data (Ontology Summit 2014)
 
Building a Network of Interoperable and Independently Produced Linked and Ope...
Building a Network of Interoperable and Independently Produced Linked and Ope...Building a Network of Interoperable and Independently Produced Linked and Ope...
Building a Network of Interoperable and Independently Produced Linked and Ope...
 
MseqDR consortium: a grass-roots effort to establish a global resource aimed ...
MseqDR consortium: a grass-roots effort to establish a global resource aimed ...MseqDR consortium: a grass-roots effort to establish a global resource aimed ...
MseqDR consortium: a grass-roots effort to establish a global resource aimed ...
 
Open science and medical evidence generation - Kees van Bochove - The Hyve
Open science and medical evidence generation - Kees van Bochove - The HyveOpen science and medical evidence generation - Kees van Bochove - The Hyve
Open science and medical evidence generation - Kees van Bochove - The Hyve
 
WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...
WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...
WEBINAR: The Yosemite Project PART 6 -- Data-Driven Biomedical Research with ...
 
The Monarch Initiative: From Model Organism to Precision Medicine
The Monarch Initiative: From Model Organism to Precision MedicineThe Monarch Initiative: From Model Organism to Precision Medicine
The Monarch Initiative: From Model Organism to Precision Medicine
 
The Vision for Data @ the NIH
The Vision for Data @ the NIHThe Vision for Data @ the NIH
The Vision for Data @ the NIH
 
Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...
Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...
Data Science at NIH and its Relationship to Social Computing, Behavioral-Cult...
 
Data Mining and Big Data Analytics in Pharma
Data Mining and Big Data Analytics in Pharma Data Mining and Big Data Analytics in Pharma
Data Mining and Big Data Analytics in Pharma
 
GenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.ca
GenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.caGenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.ca
GenomeTrakr: Perspectives on linking internationally - Canada and IRIDA.ca
 
Advancing Translational Research With The Semantic Web
Advancing Translational Research With The Semantic WebAdvancing Translational Research With The Semantic Web
Advancing Translational Research With The Semantic Web
 
Acquiring and representing drug-drug interaction knowledge and evidence, Litm...
Acquiring and representing drug-drug interaction knowledge and evidence, Litm...Acquiring and representing drug-drug interaction knowledge and evidence, Litm...
Acquiring and representing drug-drug interaction knowledge and evidence, Litm...
 
Wimmics seminar--drug interaction knowledge base, micropublication, open anno...
Wimmics seminar--drug interaction knowledge base, micropublication, open anno...Wimmics seminar--drug interaction knowledge base, micropublication, open anno...
Wimmics seminar--drug interaction knowledge base, micropublication, open anno...
 
dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020
dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020
dkNET Webinar: Illuminating The Druggable Genome With Pharos 10/23/2020
 
Big Data, AI, and Pharma
Big Data, AI, and PharmaBig Data, AI, and Pharma
Big Data, AI, and Pharma
 
IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016
IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016
IUPHAR Guide to IMMUNOPHARMACOLOGY Poster - Pharmacology 2016
 
Big Data Analytics in the Health Domain
Big Data Analytics in the Health DomainBig Data Analytics in the Health Domain
Big Data Analytics in the Health Domain
 
Guide to PHARMACOLOGY: a web-Based Compendium for Research and Education
Guide to PHARMACOLOGY: a web-Based Compendium for Research and EducationGuide to PHARMACOLOGY: a web-Based Compendium for Research and Education
Guide to PHARMACOLOGY: a web-Based Compendium for Research and Education
 
Bioinformatics and Drug Discovery
Bioinformatics and Drug DiscoveryBioinformatics and Drug Discovery
Bioinformatics and Drug Discovery
 

Plus de Michel Dumontier

A metadata standard for Knowledge Graphs
A metadata standard for Knowledge GraphsA metadata standard for Knowledge Graphs
A metadata standard for Knowledge GraphsMichel Dumontier
 
Data-Driven Discovery Science with FAIR Knowledge Graphs
Data-Driven Discovery Science with FAIR Knowledge GraphsData-Driven Discovery Science with FAIR Knowledge Graphs
Data-Driven Discovery Science with FAIR Knowledge GraphsMichel Dumontier
 
The Role of the FAIR Guiding Principles for an effective Learning Health System
The Role of the FAIR Guiding Principles for an effective Learning Health SystemThe Role of the FAIR Guiding Principles for an effective Learning Health System
The Role of the FAIR Guiding Principles for an effective Learning Health SystemMichel Dumontier
 
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...Michel Dumontier
 
The role of the FAIR Guiding Principles in a Learning Health System
The role of the FAIR Guiding Principles in a Learning Health SystemThe role of the FAIR Guiding Principles in a Learning Health System
The role of the FAIR Guiding Principles in a Learning Health SystemMichel Dumontier
 
Acclerating biomedical discovery with an internet of FAIR data and services -...
Acclerating biomedical discovery with an internet of FAIR data and services -...Acclerating biomedical discovery with an internet of FAIR data and services -...
Acclerating biomedical discovery with an internet of FAIR data and services -...Michel Dumontier
 
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...Michel Dumontier
 
Are we FAIR yet? And will it be worth it?
Are we FAIR yet? And will it be worth it?Are we FAIR yet? And will it be worth it?
Are we FAIR yet? And will it be worth it?Michel Dumontier
 
The Future of FAIR Data: An international social, legal and technological inf...
The Future of FAIR Data: An international social, legal and technological inf...The Future of FAIR Data: An international social, legal and technological inf...
The Future of FAIR Data: An international social, legal and technological inf...Michel Dumontier
 
Keynote at the 2018 Maastricht University Dinner
Keynote at the 2018 Maastricht University DinnerKeynote at the 2018 Maastricht University Dinner
Keynote at the 2018 Maastricht University DinnerMichel Dumontier
 
The future of science and business - a UM Star Lecture
The future of science and business - a UM Star LectureThe future of science and business - a UM Star Lecture
The future of science and business - a UM Star LectureMichel Dumontier
 
Developing and assessing FAIR digital resources
Developing and assessing FAIR digital resourcesDeveloping and assessing FAIR digital resources
Developing and assessing FAIR digital resourcesMichel Dumontier
 
Advancing Biomedical Knowledge Reuse with FAIR
Advancing Biomedical Knowledge Reuse with FAIRAdvancing Biomedical Knowledge Reuse with FAIR
Advancing Biomedical Knowledge Reuse with FAIRMichel Dumontier
 
A Framework to develop the FAIR Metrics
A Framework to develop the FAIR MetricsA Framework to develop the FAIR Metrics
A Framework to develop the FAIR MetricsMichel Dumontier
 
FAIR principles and metrics for evaluation
FAIR principles and metrics for evaluationFAIR principles and metrics for evaluation
FAIR principles and metrics for evaluationMichel Dumontier
 
Towards metrics to assess and encourage FAIRness
Towards metrics to assess and encourage FAIRnessTowards metrics to assess and encourage FAIRness
Towards metrics to assess and encourage FAIRnessMichel Dumontier
 
Model Organism Linked Data
Model Organism Linked DataModel Organism Linked Data
Model Organism Linked DataMichel Dumontier
 

Plus de Michel Dumontier (20)

A metadata standard for Knowledge Graphs
A metadata standard for Knowledge GraphsA metadata standard for Knowledge Graphs
A metadata standard for Knowledge Graphs
 
Data-Driven Discovery Science with FAIR Knowledge Graphs
Data-Driven Discovery Science with FAIR Knowledge GraphsData-Driven Discovery Science with FAIR Knowledge Graphs
Data-Driven Discovery Science with FAIR Knowledge Graphs
 
Evaluating FAIRness
Evaluating FAIRnessEvaluating FAIRness
Evaluating FAIRness
 
The Role of the FAIR Guiding Principles for an effective Learning Health System
The Role of the FAIR Guiding Principles for an effective Learning Health SystemThe Role of the FAIR Guiding Principles for an effective Learning Health System
The Role of the FAIR Guiding Principles for an effective Learning Health System
 
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...
CIKM2020 Keynote: Accelerating discovery science with an Internet of FAIR dat...
 
The role of the FAIR Guiding Principles in a Learning Health System
The role of the FAIR Guiding Principles in a Learning Health SystemThe role of the FAIR Guiding Principles in a Learning Health System
The role of the FAIR Guiding Principles in a Learning Health System
 
Acclerating biomedical discovery with an internet of FAIR data and services -...
Acclerating biomedical discovery with an internet of FAIR data and services -...Acclerating biomedical discovery with an internet of FAIR data and services -...
Acclerating biomedical discovery with an internet of FAIR data and services -...
 
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...
Accelerating Biomedical Research with the Emerging Internet of FAIR Data and ...
 
Are we FAIR yet? And will it be worth it?
Are we FAIR yet? And will it be worth it?Are we FAIR yet? And will it be worth it?
Are we FAIR yet? And will it be worth it?
 
The Future of FAIR Data: An international social, legal and technological inf...
The Future of FAIR Data: An international social, legal and technological inf...The Future of FAIR Data: An international social, legal and technological inf...
The Future of FAIR Data: An international social, legal and technological inf...
 
Keynote at the 2018 Maastricht University Dinner
Keynote at the 2018 Maastricht University DinnerKeynote at the 2018 Maastricht University Dinner
Keynote at the 2018 Maastricht University Dinner
 
The future of science and business - a UM Star Lecture
The future of science and business - a UM Star LectureThe future of science and business - a UM Star Lecture
The future of science and business - a UM Star Lecture
 
Are we FAIR yet?
Are we FAIR yet?Are we FAIR yet?
Are we FAIR yet?
 
Developing and assessing FAIR digital resources
Developing and assessing FAIR digital resourcesDeveloping and assessing FAIR digital resources
Developing and assessing FAIR digital resources
 
Advancing Biomedical Knowledge Reuse with FAIR
Advancing Biomedical Knowledge Reuse with FAIRAdvancing Biomedical Knowledge Reuse with FAIR
Advancing Biomedical Knowledge Reuse with FAIR
 
A Framework to develop the FAIR Metrics
A Framework to develop the FAIR MetricsA Framework to develop the FAIR Metrics
A Framework to develop the FAIR Metrics
 
FAIR principles and metrics for evaluation
FAIR principles and metrics for evaluationFAIR principles and metrics for evaluation
FAIR principles and metrics for evaluation
 
Towards metrics to assess and encourage FAIRness
Towards metrics to assess and encourage FAIRnessTowards metrics to assess and encourage FAIRness
Towards metrics to assess and encourage FAIRness
 
Ontologies
OntologiesOntologies
Ontologies
 
Model Organism Linked Data
Model Organism Linked DataModel Organism Linked Data
Model Organism Linked Data
 

Dernier

Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 

Dernier (20)

Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 

Generating Biomedical Hypotheses Using Semantic Web Technologies

  • 1. Generating (and Testing) Biomedical Hypotheses Using Semantic Web Technologies Michel Dumontier, Ph.D. Associate Professor of Medicine (Biomedical Informatics) Stanford University 1 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 3. Science, it works ****** 3 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 4. We use the biomedical literature to find out what we believe to be true 4 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 5. we need to access to the most recent biomedical data (problems: access, format, identifiers & linking) 5 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 6. we also need access to the most effective software to analyze, predict and evaluate (problems: OS, versioning, input/output formats) 6 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 7. we build support for our hypotheses by constructing and (partly) reusing fairly sophisticated workflows 7 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 8. Wouldn’t it be great if we could just find the evidence required to support or dispute a scientific hypothesis using the most up-to-date and relevant data, tools and scientific knowledge? 8 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 9. madness! 1. Build a massive network of interconnected data and software using web standards 2. Develop methods to generate and test hypotheses across these data 1. tactical formalization 2. uncovering associations 3. evidence gathering 3. Contribute back to the global knowledge graph 9 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 10. The Semantic Web is the new global web of knowledge standards for publishing, sharing and querying facts, expert knowledge and services scalable approach for the discovery of independently formulated and distributed knowledge 10 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 11. we’re building an incredible network of linked data 11 Linking Open Data cloud diagram, by Richard Cyganiak and Anja Jentzsch @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 12. Bio2RDF Linked Data Map Bio2RDF Release 2: Improved coverage, interoperability and provenance of Life Science Linked Data . ESWC 2013. 12 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 13. At the heart of Linked Data for the Life Sciences chemicals/drugs/formulations, genomes/genes/proteins, domains Interactions, complexes & pathways animal models and phenotypes Disease, genetic markers, treatments Terminologies & publications • Free and open source • Uses Semantic Web standards • Release 2 (Jan 2013): 1B+ interlinked statements from 19 conventional and high value datasets • Includes provenance, statistics • Partnerships with EBI, NCBI, DBCLS, NCBO, OpenPHACTS, and commercial tool providers 13 A Callahan, J Cruz-Toledo, M Dumontier. Querying Bio2RDF Linked Open Data with a Global Schema. 2013. Journal of Biomedical Semantics. 4(Suppl 1):S1. @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 14. Resource Description Framework • It’s a language to represent knowledge – Logic-based formalism -> automated reasoning – graph-like properties -> data analysis • Good for – Describing in terms of type, attributes, relations – Integrating data from different sources – Sharing the data (W3C standard) – Reuse what is available, develop what you’re missing. 14 Dumontier::FDA:Nov 15,2013
  • 16. The linked data network expands with every reference DrugBank drugbank_vocabulary:Drug rdf:type rdfs:label drugbank:DB00586 diclofenac [drugbank:DB00586] pharmgkb_vocabulary:xref pharmgkb:PA449293 rdfs:label PharmGKB diclofenac [pharmgkb:PA449293] pharmgkb_vocabulary:Drug 16 Dumontier::FDA:Nov 15,2013
  • 17. Federated Queries over Independent SPARQL EndPoints Get all protein catabolic processes (and more specific) from biomodels SELECT ?go ?label count(distinct ?x) WHERE { service <http://bioportal.bio2rdf.org/sparql> { ?go rdfs:label ?label . ?go rdfs:subClassOf ?tgo ?tgo rdfs:label ?tlabel . FILTER regex(?tlabel, "^protein catabolic process") } service <http://biomodels.bio2rdf.org/sparql> { ?x <http://bio2rdf.org/biopax_vocabulary:identical-to> ?go . ?x a <http://www.biopax.org/release/biopax-level3.owl#BiochemicalReaction> . } } 17 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 18. Bio2RDF: 1M+ SPARQL queries per month UniProt: 6.4M queries per month EBI: 3.5M queries (Oct 2013) 18 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 19. Directions • research – approaches for data publication – methods for large scale data reduction – methods for mining associations • service – coverage, quality and licensing – better user interfaces – sustainability of service 19 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 20. tactical formalization a. discovery of drug and disease pathway associations b. prediction of drug targets using phenotypes 20 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 21. ontology as a strategy to formally represent and integrate knowledge 21 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 22. Have you heard of OWL? 22 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 23. Identification of disease enriched pathways 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 23 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 24. aberrant pathways which pathways are associated with disease? Which pathways can be perturbed by drugs? disease pathway drug 24 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 25. 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 – Identify significant pathways via enrichment analysis over the fully inferred knowledge base • Formalized as an OWL-EL ontology – 650,000+ classes, 3.2M subClassOf axioms, 75,000 equivalentClass axioms 25 Identifying aberrant pathways through integrated analysis of knowledge in pharmacogenomics. Bioinformatics. 2012. @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 26. Top Level Classes (disjointness) pathway drug gene disease Reciprocal Existentials Class subsumption mercaptopurine [pharmgkb:PA450379] purine-6-thiol [CHEBI:2208] Class Equivalence mercaptopurine [drugbank:DB01033] mercaptopurine [mesh:D015122] mercaptopurine [ATC:L01BB02] drug property chains pathway drug disease gene 26 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 27. 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. 27 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 28. 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 for treating 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). Endothelins are proteins that constrict blood vessels and raise blood pressure. Clopidogrel inhibits platelet aggregation and prolongs bleeding time. 28 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 29. PhenomeDrug A computational approach to predict drug targets, drug effects, and drug indications using phenotypic information Mouse model phenotypes provide information about human drug targets. Hoehndorf R, Hiebert T, Hardy NW, Schofield PN, Gkoutos GV, Dumontier M. Bioinformatics. 2013. 29 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 30. animal models provide insight for on target effects • In the majority of 100 best selling drugs ($148B in US alone), there is a direct correlation between knockout phenotype and drug effect • Gastroesophageal reflux – Proton pump inhibitors (e.g Prilosec - $5B) – KO of alpha or beta unit of H/K ATPase are achlorhydric (normal pH) in stomach compared to wild type (pH 3-5) when exposed to acidic solution • Immunological Indications – Anti-histamines (Claritin, Allegra, Zyrtec) – KO of histamine H1 receptor leads to decreased responsiveness of immune system – Predicts on target effects : drowsiness, reduced anxiety Zambrowicz and Sands. Nat Rev Drug Disc. 2003. 30 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 31. Identifying drug targets from mouse knock-out phenotypes Main idea: if a drug’s phenotypes matches the phenotypes of a null model, this suggests that the drug is an inhibitor of the gene phenotypes similar effects non-functional gene model drug ortholog gene 31 inhibits human gene @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 32. Terminological Interoperability (we must compare apples with apples) Mouse Phenotypes PhenomeNet Mammalian Phenotype Ontology PhenomeDrug Drug effects (mappings from UMLS to DO, NBO, MP) @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 33. Semantic Similarity Given a drug effect profile D and a mouse model M, we compute the semantic similarity as an information weighted Jaccard metric. The similarity measure used is non-symmetrical and determines the amount of information about a drug effect profile D that is covered by a set of mouse model phenotypes M. 33 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 34. null models do well in predicting targets of drug inhibitors • 14,682 drugs; 7,255 mouse genotypes • Validation against known and predicted inhibitor-target pairs – 0.739 ROC AUC for human targets (DrugBank) – 0.736 ROC AUC for mouse targets (STITCH) – 0.705 ROC AUC for human targets (STITCH) • diclofenac (STITCH:000003032) – NSAID used to treat pain, osteoarthritis and rheumatoid arthritis – Drug effects include liver inflammation (hepatitis), swelling of liver (hepatomegaly), redness of skin (erythema) – 49% explained by PPARg knockout • peroxisome proliferator activated receptor gamma (PPARg) regulates metabolism, proliferation, inflammation and differentiation, • Diclofenac is a known inhibitor – 46% explained by COX-2 knockout • Diclofenac is a known inhibitor @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 35. Finding evidence to support or dispute a hypothesis takes some digging around 35 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 36. FDA Use Case: TKI non-QT Cardiotoxicity • Tyrosine Kinase Inhibitors (TKI) – Imatinib, Sorafenib, Sunitinib, Dasatinib, Nilotinib, Lapatinib – Used to treat cancer – Linked to cardiotoxicity. • FDA launched drug safety program to detect toxicity – Need to integrate data and ontologies (Abernethy, CPT 2011) – Abernethy (2013) suggest using public data in genetics, pharmacology, toxicology, systems biology, to predict/validate adverse events • What evidence could we gather to give credence that TKI’s causes non-QT cardiotoxicity? 36 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 37. HyQue • The goal of HyQue is retrieve and evaluate evidence that supports/disputes a hypothesis – hypotheses are described as a set of events • e.g. binding, inhibition, phenotypic effect – events are associated with types of evidence • a query is written to retrieve data • a weight is assigned to provide significance • Hypotheses are written by people who seek answers • data retrieval rules are written by people who know the data and how it should be interpreted  1. HyQue: Evaluating hypotheses using Semantic Web technologies. J Biomed Semantics. 2011 May 17;2 Suppl 2:S3. 2. Evaluating scientific hypotheses using the SPARQL Inferencing Notation. Extended Semantic Web Conference (ESWC 2012). Heraklion, Crete. May 27-31, 2012. 37 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 38. HyQue: A Semantic Web Application Hypothesis Evaluation Data Ontologies Software @micheldumontier::AAAI- 38
  • 39. SPIN functions to evaluate TKI Cardiotoxicity • Effects [r3.sider, lit] • Does the drug have known cardiotoxic effects? • Models [r2.mgi] • Are there cardiotoxic phenotypes in null mouse models of target genes? • Assays [ebi.chembl] • Is hERG inhibited? • Is the drug TUNEL positive? • Targets [r2.drugbank, lit] • Does the drug inhibit cardiotoxic-related proteins? • RAF1, PDFGFR, VEGFR, AMPK 39 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 44. In Summary • This talk was about making sense of the structured data we already have • RDF-based Linked Open Data acts as a substrate for query answering and task-based formalization in OWL • Discovery through the generation of testable hypotheses in the target domain. • The next big challenge lies in capturing the output of computational experiments just as much as extracting/formalizing user-contributed knowledge . 44 @micheldumontier::AAAI-FSW:Nov 16, 2013
  • 45. Acknowledgements Bio2RDF Release 2: Allison Callahan, Jose Cruz-Toledo, Peter Ansell Aberrant Pathways: Robert Hoehndorf, Georgios Gkoutos PhenomeDrug: Tanya Hiebert, Robert Hoehndorf, Georgios Gkoutos, Paul Schofield HyQue: Alison Callahan, Nigam Shah 45 @micheldumontier::AAAI-FSW:Nov 16, 2013

Notes de l'éditeur

  1. Growth of PubMed citations from 1986 to 2010. Over the past 20 years, the total number of citations in PubMed has increased at a ∼4% growth rate. There are currently over 20-million citations in PubMed
  2. The Bio2RDF project transforms silos of life science data into a globally distributed network of linked data for biological knowledge discovery.
  3. Slick used car salesman
  4. Endothelins are proteins that constrict blood vessels and raise blood pressure. They are normally kept in balance by other mechanisms, but when they are over-expressed, they contribute to high blood pressure (hypertension) and heart disease.
  5. Can’t answer questions that require background knowledge
  6. Associate Director for Drug Safety: Darrell Abernethy, M.D., Ph.D