collection of SPARQL queries
SELECT ?property ?propertyLabel ?x ?xLabel WHERE {
?property wdt:P31 ?x .
?property wikibase:directClaim ?p .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select distinct * where {
?qid rdfs:label 'hsa-miR-127-3p'@en .
?qid wdt:P128 ?gene .
?gene rdfs:label ?label filter (lang(?label) = "en") .
}
A query to retrieve all Gene Ontology annotations for genes regulated by the human miRNA hsa-miR-127-3p:
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?protein ?label ?go_id ?go_label ?go WHERE {
wd:Q23839066 wdt:P128 [wdt:P688 ?protein] .
?protein wdt:P681 ?go .
?protein rdfs:label ?label FILTER (lang(?label) = "en") .
?go wdt:P686 ?go_id .
?go rdfs:label ?go_label FILTER (lang(?go_label) = "en") .
} ORDER BY ?label
A query to retrieve all property names present on a gene with NCBI entrez gene ID (in this case FOXP3). This is using standard wikidata namespace.
Using the wikibase: namespace this can be done more efficiently, as id does not require the string operations to get to the entity (wd:) namespace.
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT * WHERE {
{
SELECT DISTINCT (SUBSTR(str(?prop), 37) as ?prop_nr) WHERE {
VALUES ?geneID {"50943"}
?gene wdt:P351 ?geneID ;
?prop ?value .
FILTER (SUBSTR(str(?prop), 1, 36) = 'http://www.wikidata.org/prop/direct/')
}
}
BIND(IRI(CONCAT("http://www.wikidata.org/entity/", ?prop_nr)) as ?prop)
{
SELECT * WHERE {
?prop rdfs:label ?propLabel FILTER (LANG(?propLabel) = "en") .
}
}
}
The simplified version using the wikibase namespace:
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
SELECT DISTINCT ?prop ?pLabel WHERE {
VALUES ?geneID {"50943"}
?gene wdt:P351 ?geneID ;
?prop ?value .
?p wikibase:directClaim ?prop .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Execute (on query.wikidata.org)
select (count(*) as ?count) where {
?s ?p ?o .
}
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT * WHERE {
{
SELECT DISTINCT (SUBSTR(str(?prop), 37) AS ?prop_nr) WHERE {
VALUES ?geneID {"50943"}
?gene wdt:P351 ?geneID ;
?prop ?value .
FILTER (SUBSTR(str(?prop), 1, 36) = 'http://www.wikidata.org/prop/direct/')
}
}
BIND(IRI(CONCAT("http://www.wikidata.org/entity/", ?prop_nr)) as ?prop)
{
SELECT * WHERE {
?prop rdfs:label ?propLabel filter (lang(?propLabel) = "en") .
}
}
}
SELECT DISTINCT ?property ?propLabel WHERE {
VALUES ?v {wd:Q407431 wd:Q153}
?v ?prop ?vals FILTER (!(SUBSTR(str(?vals), 1, 41) = 'http://www.wikidata.org/entity/statement/')).
?property ?ref ?prop .
?property rdfs:label ?propLabel FILTER (LANG(?propLabel) = 'en') .
}
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?gene ?revision WHERE {
?gene wdt:P351 ?entrez .
?gene wdt:P703 wd:Q15978631 .
?gene schema:version ?revision .
}
Execute
This query can be potentially useful for e.g. quick annotation of copy number abberations.
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX q: <http://www.wikidata.org/prop/qualifier/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
SELECT distinct ?gene ?geneLabel ?start ?stop ?strand_orientation WHERE {
?gene wdt:P1057 wd:Q840604 .
?gene p:P644 ?statement .
?gene wdt:P703 wd:Q15978631 .
?gene wdt:P2548 ?strand_orientation .
?statement v:P644 ?start .
?statement q:P659 wd:Q20966585 .
?gene p:P645 ?statement2 .
?statement2 v:P645 ?stop .
?statement2 q:P659 wd:Q20966585 .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
FILTER (IF(?strand_orientation = wd:Q22809680, xsd:integer(?start) > 21000000 && xsd:integer(?stop) < 30000000, xsd:integer(?stop) > 21000000 && xsd:integer(?start) < 30000000))
}
ORDER BY ?geneLabel
SELECT DISTINCT ?subc ?subcLabel (count(?subc) as ?count) WHERE {
?g wdt:P351 ?entrez .
?g wdt:P703 wd:Q15978631 .
?g wdt:P279 ?subc .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
GROUP BY ?subc ?subcLabel
ORDER BY DESC(?count)
Get all databases and bio-databases which are in Wikidata, and optionally, the property mapping to a certain database
Classified by instance of (P31) (most of them) or subclass of (P279) (a few).
SELECT DISTINCT ?db ?dbLabel ?db_prop WHERE {
{?db wdt:P31 wd:Q8513 .} UNION
{?db wdt:P31 wd:Q4117139 .} UNION
{?db wdt:P279 wd:Q8513 .} UNION
{?db wdt:P279 wd:Q4117139 .}
OPTIONAL {
?db wdt:P1687 ?db_prop .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Get all values with property number and property label on an item (here, Indole)
SELECT ?vals ?property ?propLabel WHERE {
wd:Q319541 ?prop ?vals FILTER (!(SUBSTR(str(?vals), 1, 41) = 'http://www.wikidata.org/entity/statement/')).
?property ?ref ?prop .
?property rdfs:label ?propLabel FILTER (LANG(?propLabel) = 'en') .
}
##### Get all items 4 nodes away from a WD item and all edges in between (here, [Vemurafenib](https://www.wikidata.org/wiki/Q423111)) [Execute](http://tinyurl.com/hwr2hos)
Uncommenting the second filter will only return the edges which lead from Q423111 to Q925809. The limit can be removed, but then, the query will not finish in a reasonable time if executed in a browser. With a Python script, the query returns a json object with 226 MB size within a few minutes (as of 07/11/2016).
SELECT * WHERE {
?c ?p4 [?p3 [?p2 [?p1 wd:Q423111]]] #FILTER (?c = <http://www.wikidata.org/entity/Q925809>)
FILTER((SUBSTR(str(?c), 1, 32) = 'http://www.wikidata.org/entity/Q'))
}
LIMIT 100000
SELECT ?disease ?label (GROUP_CONCAT(DISTINCT(?alias); separator="|") AS ?aliases) WHERE {
{?disease wdt:P486 ?mesh .} UNION # Mesh
{?disease wdt:P699 ?doid .} UNION # DO
{?disease wdt:P494 wd:Q11173 .} MINUS # ICD-10
{?disease wdt:P31 wd:Q11173 .}
OPTIONAL {
?disease rdfs:label ?label FILTER (LANG(?label) = "en") .
}
OPTIONAL {
?disease skos:altLabel ?alias FILTER (LANG(?alias) = "en") .
}
}
GROUP BY ?disease ?label ?aliases
select distinct ?q ?label ?article where {
{?q wdt:P279 wd:Q12136 .} UNION
{?q wdt:P279 wd:Q929833 .} UNION
{?q wdt:P31 wd:Q12136 .} UNION
{?q wdt:P31 wd:Q929833 .} UNION
{?q wdt:P557 ?diseaeDB .} UNION
{?q wdt:P493 ?icd9 .} UNION
{?q wdt:P494 ?icd10 .} UNION
{?q wdt:P1995 ?medspec .} Union
{?q p:P699/ps:P699 ?doid .}
OPTIONAL {
?q rdfs:label ?label filter (lang(?label) = "en") .
#?article schema:about ?q .
#?article schema:inLanguage "en" .
}
#SERVICE wikibase:label {
# bd:serviceParam wikibase:language "en" .
#}
#Filter not exists {?q wdt:P699 ?doid .}
}
The limit is required here, because Wikidata currently (May 2017) has 600K publications, retrieving all publication titles would lead to a query timeout.
SELECT ?pub ?pubLabel ?PMID WHERE {
?pub wdt:P698 ?PMID.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
LIMIT 5000
SELECT DISTINCT ?d ?label ?alias WHERE {
{?d wdt:P31 wd:Q12136 .} UNION
{?d wdt:P494 ?icd10 . } UNION
{?d wdt:P557 ?diseasedb } UNION
{?d wdt:P492 ?omim }
?d rdfs:label ?label . FILTER(lang(?label) = 'en' )
OPTIONAL {
?d skos:altLabel ?alias . FILTER(lang(?alias) = 'en' )
}
}
DESCRIBE ?x WHERE {
?s prov:wasDerivedFrom/pr:P352 'Q8NEB7' .
?x ?a ?s .
}
SELECT ?props ?propsLabel ?furl WHERE {
VALUES ?props {wd:P274 wd:P231 wd:P662 wd:P661 wd:P592}
OPTIONAL {?props wdt:P1630 ?furl .}
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" . }
}