A set of SPARQL examples that are used in different SIB resources
Proteins with more than 10 alternative isoforms
PREFIX : <http://nextprot.org/rdf/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform ?iso.
} group by ?entry having (count(?iso)>10)
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?_anon_524857e97b124dceaa8a4ecc8d1a1827751")
v1("?entry"):::projected
v2("?iso")
a1((" "))
f0[[" > '10^^xsd:integer'"]]
f0 --> a1
v1 --":isoform"--> v2
bind2[/"count(?iso)"/]
v2 --o bind2
bind2 --as--o v3