A set of SPARQL examples that are used in different SIB resources
Proteins that have at least one 3D structure solved by NMR
PREFIX : <http://nextprot.org/rdf/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform ?iso.
?iso :pdbMapping ?map.
?map :method ?meth
filter (contains(?meth,'NMR'))
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?entry"):::projected
v3("?iso")
v4("?map")
v1("?meth")
f0[["contains(?meth,'NMR')"]]
f0 --> v1
v2 --":isoform"--> v3
v3 --":pdbMapping"--> v4
v4 --":method"--> v1