A set of SPARQL examples that are used in different SIB resources
Proteins that are lipoproteins
PREFIX : <http://nextprot.org/rdf/>
PREFIX nextprot_cv: <http://nextprot.org/rdf/terminology/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform ?iso.
?iso :uniprotKeyword / :term nextprot_cv:KW-0449.
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?entry"):::projected
v2("?iso")
a1((" "))
c4([":terminology/KW-0449"]):::iri
v1 --":isoform"--> v2
v2 --":uniprotKeyword"--> a1
a1 --":term"--> c4