A set of SPARQL examples for tutorials at SWAT4HCLS
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