Permalink
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time
#+ summary: Find all proteins involved in a biological process | |
#+ endpoint: https://query.wikidata.org/sparql | |
#+ method: GET | |
#+ pagination: 10 | |
PREFIX bd: <http://www.bigdata.com/rdf#> | |
PREFIX wikibase: <http://wikiba.se/ontology#> | |
PREFIX wdt: <http://www.wikidata.org/prop/direct/> | |
PREFIX wd: <http://www.wikidata.org/entity/> | |
SELECT ?protein ?proteinLabel WHERE { | |
?protein wdt:P682 ?process . | |
?protein wdt:P31 wd:Q8054 . | |
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | |
} |