#
# example SPARQL query 135
#

@prefix schema: <https://schema.org/> . 
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 
@prefix sh: <http://www.w3.org/ns/shacl#> . 
@prefix cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/> .


cello:Query_135 a sh:SPARQLExecutable ;
    sh:prefixes _:sparql_examples_prefixes ;
    rdfs:comment """Some cell lines with an omics comment"""@en ; 
    schema:keywords "omics" ; 
    schema:target <https://sparql.cellosaurus.org/sparql> ; 
    sh:select """
PREFIX cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <https://schema.org/>
select ?cl ?cl_name ?omics_category ?sub_category where {
  ?cl cello:hasOmicsInfo ?annot .
  ?cl cello:recommendedName ?cl_name .
  ?annot schema:category ?omics_category .
  ?annot rdfs:comment ?sub_category .
}
limit 100
    """
    .

