A set of SPARQL examples that are used in different SIB resources
Some cell lines and the panel (collection) they belong to
PREFIX cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/>
select ?cl ?cl_name ?coll where {
?cl cello:inCollection ?coll .
?cl cello:recommendedName ?cl_name .
}
limit 100
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?cl"):::projected
v3("?cl_name"):::projected
v2("?coll"):::projected
v1 --"cello:inCollection"--> v2
v1 --"cello:recommendedName"--> v3