# Endpoint: https://togodx.dbcls.jp/human/sparql
# Description: Get gene info
PREFIX insdc: <http://ddbj.nig.ac.jp/ontologies/nucleotide/>
PREFIX ncbio: <https://dbcls.github.io/ncbigene-rdf/ontology.ttl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?type_of_gene ?label ?gene_description
FROM <http://rdf.integbio.jp/dataset/togosite/homo_sapiens_gene_info>
WHERE {
?Gene a insdc:Gene ;
ncbio:typeOfGene ?type_of_gene ;
rdfs:label ?label .
OPTIONAL {
?Gene dct:description ?gene_description .
}
}
LIMIT 100