A set of SPARQL examples that are used in different SIB resources
Protein that have a signal sequence which is not cleaved
PREFIX : <http://nextprot.org/rdf/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?entry WHERE {
?entry :isoform / :signalPeptide / rdfs:comment ?comment .
filter(contains(?comment,"Not cleaved"))
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?comment")
v2("?entry"):::projected
a1((" "))
a2((" "))
f0[["contains(?comment,'Not cleaved')"]]
f0 --> v1
v2 --":isoform"--> a1
a1 --":signalPeptide"--> a2
a2 --"rdfs:comment"--> v1