A set of SPARQL examples that are used in different SIB resources
Proteins with a propeptide
PREFIX : <http://nextprot.org/rdf/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform / :propeptide ?propep .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?entry"):::projected
v2("?propep")
a1((" "))
v1 --":isoform"--> a1
a1 --":propeptide"--> v2