SlideShare a Scribd company logo
1 of 118
Download to read offline
Introduction to Bio	Ontologies
and The	Semantic Web
M.	Devisscher
Biological Databases
Overview
• Bio	ontologies
• Semantic technologies
• SPARQL	in	practice
Introduction
• Ontologies:	what are	ontologies ?
• Ontologies in	the	bio	domain:	OBO	Foundry
• Ontologies in	the	semantic web
• OBO
• RDF,	IRI,	TTL,	SPARQL,	OWL
What is	an ontology ?
• Ontology =	a	specification of	a	
conceptualization (Gruber 1993)
• In	practice:	controlled vocabularies
– Disambiguation (e.g.	Bank,	Running)
– Language/species	independence
• Very useful in	biology – complex	hierarchies of	
terms
Ontologies in	the	bio	Domain
• OBO	Foundry - open	Biological and
Biomedical Ontologies
• Common	principles
• List	of	ontologies at	
http://www.obofoundry.org
• OBO	is	also a	data	format	.obo
SideTrack – The	Gene	Ontology
• The	mother of	bio-ontologies:	the	GO
– Oldest bio	– ontology
– Many practical	applications:
• Cross	species	studies
• Term	abundance studies
• GO	is	an OBO	ontology
SideTrack – The	Gene	Ontology
• Collection	of	terms
SideTrack – The	Gene	Ontology
• Relationships between terms:
– Subsumption:	is_a
– Partonomic:	part_of
• These	terms are	transitive
• Terms form	a	DAG	(directed,	acyclic graph)
• Some information	can be inferred
SideTrack – The	Gene	Ontology
SideTrack – The	Gene	Ontology
SideTrack – The	Gene	Ontology
• Know more:	www.geneontology.org
• AMIGO	:	the	GO	browser
Gene	Ontology	Annotation
• Gene	ontology	annotations	GOA	=	entities	
labeled	with	GO	terms
– E.g.	Uniprot-GOA
Semantic Technologies
• The	semantic web:	Tim	Berners Lee	et	al,	
Scientific American	2001
Semantic Technologies
• W3C:	a	set	of	specifications
http://www.w3.org/standards/semanticweb/
• A	mature toolset
– Dedicated data	formats
– Storage
– Query	language
Semantic Technologies
• Basic	data	element	=	a	Triple
– A	mini	sentence
– Contains three Terms:
• Subject	Predicate Object
Semantic Technologies
• Representation of	triples
– Basic	data	format:	RDF/XML
– All data	expressed in	RDF	(Resource	Description
Framework)
– Several compatible	syntaxes:	TTL	(Terse Triple	
Language)	most	human	readable
Example
The	Turtle Syntax
• Basic	Triple
<http://bioinformatics.be/entities#martijn>
<http://bioinformatics.be/relations#has_favorite_beer>
<http://bioinformatics.be/entities#karmeliet>.
The	Turtle Syntax
• Prefix
@prefix b4x: <http:bioinformatics.be/terms#>
b4x:martijn b4x:has_favorite_beer b4x:karmeliet.
The	Turtle Syntax
• Predicate lists
@prefix b4x: <http:bioinformatics.be/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
b4x:martijn b4x:has_favorite_beer b4x:karmeliet;
foaf:name “Martijn Devisscher”.
The	Turtle Syntax
• Object	lists
@prefix b4x: <http:bioinformatics.be/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
b4x:martijn b4x:has_favorite_beer b4x:karmeliet,
b4x:chimay_blauw;
foaf:name “Martijn Devisscher”.
IRI’s and Literals
• Terms can be either IRI’s,	Literals or	blank	nodes
• IRI	= Internationalized Resource	Identifier
• Unique	id – a	virtual	URI
– Example:	<http://bioinformatics.be/terms#martijn>
– There is	no	requirement for resolving
– Now:	Open	Data	initiatives:	please do	use resolvable
URI’s http://linkeddata.org
– Unique	identifiers can be registered on	
http://identifiers.org
Introduction
• Literals:	can be typed,	allowed types	from the	
XSD	namespace:
– E.g.	“This is	a	string	example”^^xsd:string
– E.g.	“5”^^xsd:integer
• IRI’s are	used for entities and attributes
• Literals are	used for attribute values that
aren’t entities
The	Turtle Syntax
• Typed literals
@prefix b4x: <http:bioinformatics.be/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
b4x:martijn b4x:has_favorite_beer b4x:karmeliet,
b4x:chimay_blauw;
b4x:length “184”^^xsd:integer;
foaf:name “Martijn Devisscher”^^xsd:string.
The	Turtle Syntax
• Blank	nodes
@prefix b4x: <http:bioinformatics.be/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
b4x:martijn b4x:has_favorite_beer b4x:karmeliet,
b4x:chimay_blauw;
b4x:length “184”^^xsd:integer;
foaf:name “Martijn Devisscher”^^xsd:string;
b4x:owns_cat [ b4x:color “Gray” ].
Classes	and Individuals
• rdf:type
@prefix b4x: <http:bioinformatics.be/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
b4x:martijn rdf:type foaf:Person.
Classes	and Individuals
• Shorthand:	a
@prefix b4x: <http:bioinformatics.be/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
b4x:martijn a foaf:Person;
foaf:knows b4x:geert.
b4x:geert a foaf:Person.
Example
<http://xmpl/entities#martijn>
<http://xmpl/relations#has_favorite_beer>
<http://xmpl/entities#karmeliet>.
Semantic Technologies
• Sets	of	triples form	a	Graph
Graphs
• Triples are	building	blocks of	Graphs
• Combining sets	of	triples allows the	
construction of	arbitrarily complex	graphs
b4x:martijn b4x:karmeliethas_favorite_beer
Add meaning !
• Reuse terms from existing,	well	defined
vocabularies – ontologies (foaf,	dc,	go,	so)
• Describe new	terms =	Ontologies
• Contain
– A	crisp	human	definition
– Some machine	readable facts
Metadata
• Ontologies are	also described in	RDF
– RDFS:	RDF	- Schema
– OWL:	Web	Ontology Language
– Also expressed in	RDF
• For	clarity,	file	extension	can be .rdfs or	.owl
RDFS	Essentials
• Descriptions
– rdfs:label
– rdfs:comment
RDFS
• Relationships between properties,	classes
– rdfs:Class
– rdfs:subClassOf
– rdf:Property
– rdfs:subPropertyOf
– rdfs:range
– rdfs:domain
RDFS:	Example
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
b4x:karmeliet a b4x:Tripel .
b4x:Beer a rdfs:Class .
b4x:Tripel a rdfs:Class .
b4x:Tripel rdfs:subClassOf b4x:Beer .
b4x:has_favorite_beer a rdf:Property ;
rdfs:domain foaf:Person ;
rdfs:range b4x:Beer .
b4x:Beer rdfs:subClassOf b4x:Drink .
Analogy
• RDF	=	database	=	data
• RDFS/OWL	=	schema	=	metadata
• Both	are	described in	RDF,	but	have	a	different	
scope
Semantic Technologies
• Inference
– Enhance dataset	using knowledge from metadata
(e.g.	rdfs,	owl)
• Types	of	inference engines
– RDFS	inference
• RDFS	entailment regime
– OWL	inference
• Under	active research
• Engines	exist for specific subsets of	OWL	(OWL-DL)
RDFS	Entailment
RDFS:	Inference
b4x:kevin	b4x:has_favorite_beer	b4x:stella
Q:	What can we	infer from this using RDFS	
entailment ?
RDFS:	Inference
b4x:kevin	b4x:has_favorite_beer	b4x:stella
Inferred triples:
b4x:kevin	a	foaf:Person [from domain]
b4x:stella	a	b4x:Beer	[from range]
b4x:stella	a	b4x:Drink	[from subClassOf]
DuckTyping
• Watch	out	with inference !
Example:	You want	to express that people can
have	lengths
b4x:length a rdf:Property;
rdfs:domain foaf:Person;
rdfs:range xsd:integer.
DuckTyping
• Problem:
ex:VW_Transporter b4x:length “600”^xsd:integer.
• Would infer that VW_Transporter is	a	Person	!
• This is	called DuckTyping
If	it	looks	like	a	duck,	swims	like	a	duck,	and	
quacks	like	a	duck,	then	it	probably	is	a	duck
Task
• Find	a	solution:	express	in	rdfs that	people	can	
have	lengths
Task
• Find	a	solution:	express	in	rdfs that	people	can	
have	lengths
b4x:havingLenght a rdfs:Class.
b4x:length a rdf:Property;
rdfs:domain b4x:havingLength;
rdfs:range xsd:integer.
foaf:Person rdfs:subClassOf b4x:havingLength.
Storing	RDF
• As	an RDF	file	for download
• In	a	Triplestore
– Database	optimised for storing	triples
– Examples:	BlazeGraph,	Fuseki,	Sesame
Semantic Technologies
• Querying over	RDF	data:	SPARQL
• Cool	features:
– Distributed	querying =	actual distribution of	data	
and computing	resources
– SPARQL/Update:	modify data
• SPARQL	endpoints:	SPARQL	over	HTTP
SPARQL	Query	Syntax
• First	example:
SELECT ?subject ?predicate ?object WHERE {
?subject ?predicate ?object.
}
(Generally	not a	good idea as	it will pull	down	
the	whole dataset)
Binding	variables
Graph matching
?
SELECT ?person WHERE {
?person b4x:has_favorite_beer b4x:karmeliet
}
?
SPARQL	Query	Syntax
• Limit	result size :
SELECT ?subject ?predicate ?object WHERE {
?subject ?predicate ?object.
} LIMIT 10
SPARQL	Query	Syntax
• Find all classes:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?class ?label WHERE {
?class a rdfs:Class.
?class rdfs:label ?label.
}
(This will only retrieve classes	that have	a	label)
SPARQL	Query	Syntax
• Find all classes:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?class ?label WHERE {
?class a rdfs:Class.
OPTIONAL {
?class rdfs:label ?label.
}
}
SPARQL	Query	Syntax
• Find all classes	that contain “duck”	in	the	
label:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?class ?label WHERE {
?class a rdfs:Class.
?class rdfs:label ?label.
FILTER( CONTAINS (str(?label) , “duck” ) )
}
SPARQL	Query	Syntax
• Make	it case	insensitive:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?class ?label WHERE {
?class a rdfs:Class.
?class rdfs:label ?label.
FILTER( CONTAINS ( UCASE(str(?label)) , “DUCK” ) )
}
SPARQL	Query	Syntax
• Search	in	specific graph:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?class ?label
FROM <http://example.org/animals>
WHERE {
?class a rdfs:Class.
?class rdfs:label ?label.
FILTER( CONTAINS ( UCASE(str(?label)) , “DUCK” ) )
}
SPARQL	Query	Syntax
• Search	in	specific graph:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?class ?label WHERE {
GRAPH <http://example.org/animals> {
?class a rdfs:Class.
?class rdfs:label ?label.
FILTER( CONTAINS ( UCASE(str(?label)) , “DUCK” ) )
}
}
SPARQL	Query	Syntax
• Can also search	for graphs :
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?g WHERE {
GRAPH ?g {
?class a rdfs:Class.
?class rdfs:label ?label.
FILTER( CONTAINS ( UCASE(str(?label)) , “DUCK” ) )
}
}
Summary:	Querying RDF	data
RDF	Data
Inference
Engine
RDFS/OWL
RDF	Data
Inferred
SPARQL
Endpoint
• Basic data element = a Triple
– A mini sentence
– Contains three Terms:
– Subject Predicate Object
• Example:
<http://xmpl/entities#martijn>
<http://xmpl/relations#has_favorite_beer>
<http://xmpl/entities#karmeliet>.
Take	home	Summary
• Combine triples to represent
knowledge
• Use terms from ONTOLOGIES
– COMMON VOCABULARIES
– POSSIBLE TO INFER
MEANING
• OMIABIS
• OBIB
• SNOMED/ICD
• MESH
?
• SPARQL searches for patterns
?
Interoperability between OBO	and
Semantic Technologies
• Originated from two separate	academic worlds
• Computing	applications of	OBO	mainly
consistency checking and overrepresentation
analysis
• Semantic Technologies:	much broader toolset
• Interoperability ?
– Direct	offering in	both formats
– Automated mapping
Where to find ontologies
• OBO	Foundry
• Bioportal;	NCBO
• Biogateway
• Bio2RDF
Where to find RDF	data
• Google	for SPARQL	endpoint
• =>	e.g.	EBI	databases
• Non	biological:	DBpedia
How	about Tim	Berners Lee’s vision
• We’re not there yet,	but	for bio	data	we’re
getting quite close
– The	explicitome
– Crowd sourcing
– Nanopublications
SPARQL	in	PRACTICE
SPARQL	:	Recap
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
FROM <http://graphName> WHERE {
?x rdfs:label ?label.
FILTER ( CONTAINS(?label, “dimethylalinine”) )
} LIMIT 10 ORDER BY ?label
SPARQL	:	Recap
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
FROM <http://graphName> WHERE {
?x rdfs:label ?label.
FILTER ( CONTAINS(?label, “dimethylalinine”) )
} LIMIT 10 ORDER BY ?label
• FIND	the	pattern	?x rdfs:label ?label.
SPARQL	:	Recap
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
FROM <http://graphName> WHERE {
?x rdfs:label ?label.
FILTER ( CONTAINS(?label, “dimethylalinine”) )
} LIMIT 10 ORDER BY ?label
• FIND	the	pattern	?x rdfs:label ?label.
• BIND	variables	?label,	?x
SPARQL	:	Recap
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
FROM <http://graphName> WHERE {
?x rdfs:label ?label.
FILTER ( CONTAINS(?label, “dimethylalinine”) )
} LIMIT 10 ORDER BY ?label
• FIND	the	pattern	?x rdfs:label ?label.
• BIND	variables	?label,	?x
• RETRIEVE variable	?label
SPARQL	:	Recap
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
FROM <http://graphName> WHERE {
?x rdfs:label ?label.
FILTER ( CONTAINS(?label, “dimethylalinine”) )
} LIMIT 10 ORDER BY ?label
• FIND	the	pattern	?x rdfs:label ?label.
• BIND	variables	?label,	?x
• RETRIEVE	variable	?label
• PREFIX:	replace	rdfs:label by	<http://www.w3.org/2000/01/rdf-schema#label>
SPARQL	:	Recap
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
FROM <http://graphName> WHERE {
?x rdfs:label ?label.
FILTER ( CONTAINS(?label, “dimethylalinine”) )
} LIMIT 10 ORDER BY ?label
• FIND	the	pattern	?x rdfs:label ?label.
• BIND	variables	?label,	?x
• RETRIEVE	variable	?label
• PREFIX:	replace	rdfs:label by	<http://www.w3.org/2000/01/rdf-schema#>
• FILTER results	to	labels	containing	“dimethylalinine”
SPARQL	:	Recap
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
FROM <http://graphName> WHERE {
?x rdfs:label ?label.
FILTER ( CONTAINS(?label, “dimethylalinine”) )
} LIMIT 10 ORDER BY ?label
• FIND	the	pattern	?x rdfs:label ?label.
• BIND	variables	?label,	?x
• RETRIEVE	variable	?label
• PREFIX:	replace	rdfs:label by	<http://www.w3.org/2000/01/rdf-schema#>
• FILTER	results	to	labels	containing	“dimethylalinine”
• LIMIT	results	to	first	10	matches	ordered	by	label
SPARQL	:	Recap
DESCRIBE
<http://rdf.wikipathways.org/Pathway/WP1425_r74390/WP/Interaction/e077e>
• Useful	short	query	to	get	direct	links	from/to	a	
given	node
SPARQL	REFERENCE
http://www.w3.org/TR/sparql11-overview/
Running	SPARQL
• From	a	web	interface
• From	a	web	interface
• Using	http
– HTTP	GET
– HTTP	POST	:	for	larger	query	strings
– Headers	determine	response	type	(JSON,	XML,	HTML)
http://…/sparql?default-graph-uri=<http://graphName>&query=URLENCODEDQUERYSTRING
Running	SPARQL
BIO-ONTOLOGIES
BioPortal
Access
• From	the	web	interface	!
• SPARQL	endpoint:	using	API	key;	on	request	
• Running	a	local	copy:	download	VM	image;	on	
request
Exercises
• Find	a	term
• Find	ontologies	containing	a	term
• Browse	some	ontologies
• Check	the	NCBO	annotator	!
BIO-DATA
EBI	RDF	Resources
EBI	RDF	Resources
Ensembl
Exercise
• From	uniprot find	proteins	that	are	annotated	
with	a	given	Gene	Ontology	term
PREFIX up:<http://purl.uniprot.org/core/>
PREFIX taxon:<http://purl.uniprot.org/taxonomy/>
PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
PREFIX obo:<http://purl.obolibrary.org/obo/>
SELECT * WHERE {
?protein up:classifiedWith obo:GO_0004499.
?protein up:organism taxon:9606.
}
http://sparql.uniprot.org
Exercise
• From	Expression	Atlas	find	proteins	that	are	
differentially	expressed	(P	<	1e-12)	in	Crohn’s
disease
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX obo: <http://purl.obolibrary.org/obo/>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX efo: <http://www.ebi.ac.uk/efo/>
PREFIX atlas: <http://rdf.ebi.ac.uk/resource/atlas/>
PREFIX atlasterms: <http://rdf.ebi.ac.uk/terms/atlas/>
PREFIX up:<http://purl.uniprot.org/core/>
PREFIX biopax3:<http://www.biopax.org/release/biopax-level3.owl#>
SELECT distinct ?protein ?expressionValue ?pvalue WHERE {
?factor rdf:type efo:EFO_0000384 .
?value atlasterms:hasFactorValue ?factor .
?value atlasterms:isMeasurementOf ?probe .
?value atlasterms:pValue ?pvalue .
?value rdfs:label ?expressionValue .
?probe atlasterms:dbXref ?protein .
FILTER ( ?pvalue < 1e-12 )
FILTER ( strstarts(str(?protein),"http://purl.uniprot.org/uniprot/") )
}ORDER BY ASC (?pvalue)
https://www.ebi.ac.uk/rdf/services/atlas/sparql
• Links	pathways	with	genes,	terms	from	
Pathway,	Cell	line	and	Disease	ontology,	
PubMed	references
• Models	individual	Interactions
• Can	be	downloaded	as	RDF
• Has	an	experimental	SPARQL	endpoint
WikiPathways
• Define	a	query	to	find	pathways	linked	to	
TNFalpha gene
Exercise
PREFIX wp: <http://vocabularies.wikipathways.org/wp#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?PathwayName where {
?geneProduct a wp:GeneProduct .
?geneProduct dc:identifier ?GeneID .
?geneProduct dcterms:isPartOf ?pathway .
?geneProduct rdfs:label ?geneName .
?pathway dc:identifier ?pathwayid .
?pathway dc:title ?PathwayName .
FILTER(str(?geneName) = "TNFalpha" )
}
http://sparql.wikipathways.org
• Try	this,	or	another	query
– Using	web	interface
– Using	http	get
• Define	a	simple	describe
• Use	a	web	tool	to	URLEncode the	query
• Submit	query	as	a	URL	parameter
Exercise
DisGeNet
• Find	diseases	linked	to	BRCA1
Exercise
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#>
PREFIX up: <http://purl.uniprot.org/core/>
SELECT DISTINCT ?disease WHERE {
?gda a sio:SIO_000983.
?gda sio:SIO_000628 ?disease.
?disease a ncit:C7057.
?gda sio:SIO_000628 ?gene.
?gene a ncit:C16612.
?gene skos:exactMatch <http://identifiers.org/hgnc.symbol/BRCA1>}
http://rdf.disgenet.org/lodestar/sparql
• Yields	no	results
????
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#>
PREFIX up: <http://purl.uniprot.org/core/>
SELECT DISTINCT ?disease WHERE {
?gda a sio:SIO_000983.
?gda sio:SIO_000628 ?disease.
?disease a ncit:C7057.
?gda sio:SIO_000628 ?gene.
?gene a ncit:C16612.
?gene skos:exactMatch <http://identifiers.org/hgnc.symbol/BRCA1>}
http://rdf.disgenet.org/lodestar/sparql
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#>
PREFIX up: <http://purl.uniprot.org/core/>
SELECT DISTINCT ?disease WHERE {
?gda a [(rdfs:subClassOf)* sio:SIO_000983].
?gda sio:SIO_000628 ?disease.
?disease a ncit:C7057.
?gda sio:SIO_000628 ?gene.
?gene a ncit:C16612.
?gene skos:exactMatch <http://identifiers.org/hgnc.symbol/BRCA1>}
http://rdf.disgenet.org/lodestar/sparql
• Inference	cannot	be	assumed	on	a	SPARQL	
endpoint	=>	take	care	with	defining	queries
Why	?
• Define	a	query	to	find	genes	with	important	
link	to	Crohn’s	disease	(score	>	0.35)
Exercise
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#>
PREFIX up: <http://purl.uniprot.org/core/>
SELECT DISTINCT ?gene WHERE {
?gda sio:SIO_000628 ?gene,?disease .
?gene a ncit:C16612 .
?gene skos:exactMatch ?GeneID .
?disease a ncit:C7057 .
?disease dcterms:title ?DiseaseName .
?gda sio:SIO_000216 ?scoreIRI .
?scoreIRI sio:SIO_000300 ?score .
FILTER (?score > "0.35"^^xsd:decimal)
FILTER (contains(str(?DiseaseName),"Crohn"))
}
http://rdf.disgenet.org/lodestar/sparql
neXtProt
• Define	a	query	to	find	proteins	related	with	
Cardio	diseases
• Define	a	query	to	find	the	genomic	location	of	
gene	“TP53”
Exercise
select distinct ?id where {
?entry skos:exactMatch ?id.
?entry :isoform ?isoform.
?isoform :medical ?medical_annotation.
?medical_annotation :term ?term.
?term :related ?disease.
?disease a :MeshCv.
?disease rdfs:label ?label.
FILTER(CONTAINS(?label,"Cardio")).
}
https://snorql.nextprot.org/
select ?chrom ?start ?end where
{
?gene rdf:type :Gene.
?gene :name ?name.
?gene :chromosome ?chrom.
?gene :begin ?start.
?gene :end ?end.
FILTER (str(?name) = "TP53")
}
https://snorql.nextprot.org/
• Federated	querying:	include	data	from	
another	endpoint	using	the	SERVICE	keyword
• Example:	find	pathways	(from	wikipathways)	
involving	gene	linked	to	Crohn’s	disease	(from	
disgenet)
SPARQL	and	federated	queries
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#>
PREFIX up: <http://purl.uniprot.org/core/>
PREFIX wp: <http://vocabularies.wikipathways.org/wp#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX dcterms: <http://purl.org/dc/terms/>
http://rdf.disgenet.org/lodestar
SELECT DISTINCT ?PathwayName WHERE {
?gda sio:SIO_000628 ?gene, ?disease .
?gene a ncit:C16612 .
?disease a ncit:C7057 .
?disease dcterms:title ?DiseaseName .
?gda sio:SIO_000216 ?scoreIRI .
?scoreIRI sio:SIO_000300 ?score .
FILTER (?score > "0.35"^^xsd:decimal)
FILTER (contains(str(?DiseaseName),"Crohn"))
SERVICE <http://sparql.wikipathways.org/> {
?geneProduct a wp:GeneProduct .
?geneProduct dc:identifier ?gene .
?geneProduct dcterms:isPartOf ?pathway .
?pathway dc:identifier ?pathwayid .
?pathway dc:title ?PathwayName .
}
}
http://rdf.disgenet.org/lodestar/sparql
Bio ontologies and semantic technologies

More Related Content

What's hot

Aidan's PhD Viva
Aidan's PhD VivaAidan's PhD Viva
Aidan's PhD VivaAidan Hogan
 
Verifying Integrity Constraints of a RDF-based WordNet
Verifying Integrity Constraints of a RDF-based WordNetVerifying Integrity Constraints of a RDF-based WordNet
Verifying Integrity Constraints of a RDF-based WordNetAlexandre Rademaker
 
How to make your published data findable, accessible, interoperable and reusable
How to make your published data findable, accessible, interoperable and reusableHow to make your published data findable, accessible, interoperable and reusable
How to make your published data findable, accessible, interoperable and reusablePhoenix Bioinformatics
 
FedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked DataFedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked Dataaschwarte
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLMyungjin Lee
 
SPARQL in the Semantic Web
SPARQL in the Semantic WebSPARQL in the Semantic Web
SPARQL in the Semantic WebJan Beeck
 
2019 03 05_biological_databases_part5_v_upload
2019 03 05_biological_databases_part5_v_upload2019 03 05_biological_databases_part5_v_upload
2019 03 05_biological_databases_part5_v_uploadProf. Wim Van Criekinge
 
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...Marko Rodriguez
 
Hack U Barcelona 2011
Hack U Barcelona 2011Hack U Barcelona 2011
Hack U Barcelona 2011Peter Mika
 
The Network Data Structure in Computing
The Network Data Structure in ComputingThe Network Data Structure in Computing
The Network Data Structure in ComputingMarko Rodriguez
 
SWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfs
SWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfsSWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfs
SWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfsMariano Rodriguez-Muro
 

What's hot (19)

2016 02 23_biological_databases_part1
2016 02 23_biological_databases_part12016 02 23_biological_databases_part1
2016 02 23_biological_databases_part1
 
Aidan's PhD Viva
Aidan's PhD VivaAidan's PhD Viva
Aidan's PhD Viva
 
SWT Lecture Session 2 - RDF
SWT Lecture Session 2 - RDFSWT Lecture Session 2 - RDF
SWT Lecture Session 2 - RDF
 
P7 2018 biopython3
P7 2018 biopython3P7 2018 biopython3
P7 2018 biopython3
 
Triple Stores
Triple StoresTriple Stores
Triple Stores
 
Linked (Open) Data
Linked (Open) DataLinked (Open) Data
Linked (Open) Data
 
Verifying Integrity Constraints of a RDF-based WordNet
Verifying Integrity Constraints of a RDF-based WordNetVerifying Integrity Constraints of a RDF-based WordNet
Verifying Integrity Constraints of a RDF-based WordNet
 
How to make your published data findable, accessible, interoperable and reusable
How to make your published data findable, accessible, interoperable and reusableHow to make your published data findable, accessible, interoperable and reusable
How to make your published data findable, accessible, interoperable and reusable
 
FedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked DataFedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked Data
 
Rdf
RdfRdf
Rdf
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQL
 
SPARQL in the Semantic Web
SPARQL in the Semantic WebSPARQL in the Semantic Web
SPARQL in the Semantic Web
 
Democratizing Big Semantic Data management
Democratizing Big Semantic Data managementDemocratizing Big Semantic Data management
Democratizing Big Semantic Data management
 
2019 03 05_biological_databases_part5_v_upload
2019 03 05_biological_databases_part5_v_upload2019 03 05_biological_databases_part5_v_upload
2019 03 05_biological_databases_part5_v_upload
 
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
 
Hack U Barcelona 2011
Hack U Barcelona 2011Hack U Barcelona 2011
Hack U Barcelona 2011
 
The Network Data Structure in Computing
The Network Data Structure in ComputingThe Network Data Structure in Computing
The Network Data Structure in Computing
 
SWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfs
SWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfsSWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfs
SWT Lecture Session 6 - RDFS semantics, inference techniques, sesame rdfs
 
5 rdfs
5 rdfs5 rdfs
5 rdfs
 

Viewers also liked (8)

20170509 rand db_lesugent
20170509 rand db_lesugent20170509 rand db_lesugent
20170509 rand db_lesugent
 
P1 2017 python
P1 2017 pythonP1 2017 python
P1 2017 python
 
T5 2017 database_searching_v_upload
T5 2017 database_searching_v_uploadT5 2017 database_searching_v_upload
T5 2017 database_searching_v_upload
 
Mysql all
Mysql allMysql all
Mysql all
 
P4 2017 io
P4 2017 ioP4 2017 io
P4 2017 io
 
P3 2017 python_regexes
P3 2017 python_regexesP3 2017 python_regexes
P3 2017 python_regexes
 
P1 3 2017_python_exercises
P1 3 2017_python_exercisesP1 3 2017_python_exercises
P1 3 2017_python_exercises
 
P2 2017 python_strings
P2 2017 python_stringsP2 2017 python_strings
P2 2017 python_strings
 

Similar to Bio ontologies and semantic technologies

Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)DevDays
 
It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011Ross Singer
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataAn introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataGabriela Agustini
 
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013Fabien Gandon
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked DataGabriela Agustini
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosEUCLID project
 
First steps towards publishing library data on the semantic web
First steps towards publishing library data on the semantic webFirst steps towards publishing library data on the semantic web
First steps towards publishing library data on the semantic webhorvadam
 
A hands on overview of the semantic web
A hands on overview of the semantic webA hands on overview of the semantic web
A hands on overview of the semantic webMarakana Inc.
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeDan Brickley
 
Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2Richard Urban
 
Schema.org: What It Means For You and Your Library
Schema.org: What It Means For You and Your LibrarySchema.org: What It Means For You and Your Library
Schema.org: What It Means For You and Your LibraryRichard Wallis
 
Linked data for librarians
Linked data for librariansLinked data for librarians
Linked data for librarianstrevorthornton
 
SUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)data
SUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)dataSUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)data
SUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)dataDiego Valerio Camarda
 
Linked Open Data for Libraries
Linked Open Data for LibrariesLinked Open Data for Libraries
Linked Open Data for LibrariesLukas Koster
 
A Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic WebA Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic WebShamod Lacoul
 
Knowledge Technologies: Opportunities and Challenges
Knowledge Technologies: Opportunities and ChallengesKnowledge Technologies: Opportunities and Challenges
Knowledge Technologies: Opportunities and ChallengesFariz Darari
 
Reborn Digital: coding text
Reborn Digital: coding textReborn Digital: coding text
Reborn Digital: coding textPip Willcox
 

Similar to Bio ontologies and semantic technologies (20)

Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)Furore devdays 2017- rdf1(solbrig)
Furore devdays 2017- rdf1(solbrig)
 
It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataAn introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked Data
 
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked Data
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application Scenarios
 
First steps towards publishing library data on the semantic web
First steps towards publishing library data on the semantic webFirst steps towards publishing library data on the semantic web
First steps towards publishing library data on the semantic web
 
A hands on overview of the semantic web
A hands on overview of the semantic webA hands on overview of the semantic web
A hands on overview of the semantic web
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in Practice
 
Web of Data Usage Mining
Web of Data Usage MiningWeb of Data Usage Mining
Web of Data Usage Mining
 
Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2
 
NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...
NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...
NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...
 
Schema.org: What It Means For You and Your Library
Schema.org: What It Means For You and Your LibrarySchema.org: What It Means For You and Your Library
Schema.org: What It Means For You and Your Library
 
Linked data for librarians
Linked data for librariansLinked data for librarians
Linked data for librarians
 
SUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)data
SUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)dataSUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)data
SUMMER SCHOOL LEX 2014 - RDF + SPARQL querying the web of (lex)data
 
Linked Open Data for Libraries
Linked Open Data for LibrariesLinked Open Data for Libraries
Linked Open Data for Libraries
 
A Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic WebA Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic Web
 
Knowledge Technologies: Opportunities and Challenges
Knowledge Technologies: Opportunities and ChallengesKnowledge Technologies: Opportunities and Challenges
Knowledge Technologies: Opportunities and Challenges
 
Reborn Digital: coding text
Reborn Digital: coding textReborn Digital: coding text
Reborn Digital: coding text
 

More from Prof. Wim Van Criekinge (14)

2019 02 21_biological_databases_part2_v_upload
2019 02 21_biological_databases_part2_v_upload2019 02 21_biological_databases_part2_v_upload
2019 02 21_biological_databases_part2_v_upload
 
P6 2018 biopython2b
P6 2018 biopython2bP6 2018 biopython2b
P6 2018 biopython2b
 
P4 2018 io_functions
P4 2018 io_functionsP4 2018 io_functions
P4 2018 io_functions
 
P3 2018 python_regexes
P3 2018 python_regexesP3 2018 python_regexes
P3 2018 python_regexes
 
T1 2018 bioinformatics
T1 2018 bioinformaticsT1 2018 bioinformatics
T1 2018 bioinformatics
 
P1 2018 python
P1 2018 pythonP1 2018 python
P1 2018 python
 
2018 05 08_biological_databases_no_sql
2018 05 08_biological_databases_no_sql2018 05 08_biological_databases_no_sql
2018 05 08_biological_databases_no_sql
 
2018 03 27_biological_databases_part4_v_upload
2018 03 27_biological_databases_part4_v_upload2018 03 27_biological_databases_part4_v_upload
2018 03 27_biological_databases_part4_v_upload
 
2018 03 20_biological_databases_part3
2018 03 20_biological_databases_part32018 03 20_biological_databases_part3
2018 03 20_biological_databases_part3
 
2018 02 20_biological_databases_part2_v_upload
2018 02 20_biological_databases_part2_v_upload2018 02 20_biological_databases_part2_v_upload
2018 02 20_biological_databases_part2_v_upload
 
P7 2017 biopython3
P7 2017 biopython3P7 2017 biopython3
P7 2017 biopython3
 
P6 2017 biopython2
P6 2017 biopython2P6 2017 biopython2
P6 2017 biopython2
 
Van criekinge 2017_11_13_rodebiotech
Van criekinge 2017_11_13_rodebiotechVan criekinge 2017_11_13_rodebiotech
Van criekinge 2017_11_13_rodebiotech
 
2017 molecular profiling_wim_vancriekinge
2017 molecular profiling_wim_vancriekinge2017 molecular profiling_wim_vancriekinge
2017 molecular profiling_wim_vancriekinge
 

Recently uploaded

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 

Recently uploaded (20)

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 

Bio ontologies and semantic technologies