SPARQL examples for the EMI
View the Project on GitHub earth-metabolome-initiative/sparql-examples
Find taxon records that are known to have part of their life cycle in other organisms (e.g. parasite, symbiont, infection)
PREFIX up: <http://purl.uniprot.org/core/>
SELECT
?virus
?host
WHERE {
?virus up:host ?host .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?host"):::projected
v1("?virus"):::projected
v1 --"up:host"--> v2