sparql-examples

A set of SPARQL examples that are used in different SIB resources

View the Project on GitHub sib-swiss/sparql-examples

neXtProt/NXQ_00031

Proteins with more than 10 alternative isoforms

Use at

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