SPARQL example query 1
1: Select all taxa from the UniProt taxonomy
1
PREFIX up: <http://purl.uniprot.org/core/>
2
SELECT ?taxon
3
FROM <http://sparql.uniprot.org/taxonomy>
4
WHERE
5
{
6
?taxon a up:Taxon .
7
}
1: Select all taxa from the UniProt taxonomy
PREFIX up: <http://purl.uniprot.org/core/>
SELECT ?taxon
FROM <http://sparql.uniprot.org/taxonomy>
WHERE
{
?taxon a up:Taxon .
}