A set of SPARQL examples that are used in different SIB resources
What are the species present in Bgee?
PREFIX up: <http://purl.uniprot.org/core/>
SELECT ?species WHERE {
?species a up:Taxon .
?species up:rank up:Species .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?species"):::projected
c2(["up:Taxon"]):::iri
c4(["up:Species"]):::iri
v1 --"a"--> c2
v1 --"up:rank"--> c4