RDF-config is a tool to generate SPARQL queries, a schema diagram, and files required for Grasp, TogoStanza and ShEx varidator from the simple YAML-based configuration files (see the specification).
- implement
- support multiple models to be loaded in combination at once
- test
- DONE: capture the RDF data strucuture in ease
- DONE: generate SPARQL queries
- DONE: generate Grasp config file
- DONE: generate schema chart
- DONE: generate TogoStanza
- DONE: generate ShEx for RDF validation (data type and cardinality)
- generate SPARQLet for SPARQList
- Pre-requirements:
- To generate Ruby version of TogoStanza, install TogoStanza gem by running
gem install togostanza
- To generate JavaScript version of TogoStanza, install ts command by downloading the latest release for your environment (e.g., ts_0.0.19_darwin_amd64.zip for macOS)
- To generate Ruby version of TogoStanza, install TogoStanza gem by running
% git clone https://github.com/dbcls/rdf-config.git
% cd rdf-config
- TODO:
- Installer will be provided soon! (add ./bin to your $PATH until then)
% bin/rdf-config --config config/refex --senbero
RefExEntry [refexo:RefExEntry] (<http://purl.jp/bio/01/refex/RFX0016539731>)
|-- refexo:expValue
| `-- ex_value ("Ex value")
|-- dct:identifier
| `-- refex_id ("RFX0016539731")
|-- rdfs:seeAlso
| `-- see_also (<http://identifiers.org/affy.probeset/224348_s_at>)
`-- refexo:refexSample
`-- sample (RefExSample)
RefExSample [refexo:RefExSample] (<http://refex.dbcls.jp/sample/RES00000100>)
|-- dct:identifier
| `-- sample_id ("RES00000100")
|-- refexo:organism ?
| `-- taxonomy (<http://identifiers.org/taxonomy/9606>)
|-- refexo:age *
| `-- age (obo:PATO_0000383)
|-- refexo:sex ?
| `-- sex (obo:PATO_0000383)
|-- refexo:developmentalStage *
| `-- stage ("adult")
|-- refexo:refexSampleCategory *
| `-- sample_category ("developmental")
|-- refexo:refexRefinedDescription *
| `-- description ("uterus, adult")
|-- refexo:originalDescription *
| `-- original_description ("TPM (tags per million) of Smooth Muscle Cells - Subclavian Artery, donor1.CNhs11090.11289-117A2")
|-- refexo:refexAlphabeticalUniqOrder ?
| `-- unique_order (210)
|-- refexo:refexTissueClass10 ?
| `-- class10 (refexo:v04_10)
|-- refexo:refexTissueClass40 ?
| `-- class40 (refexo:v20_4)
|-- refexo:sampleReference / refexo:belongsToCellType *
| `-- cell_type (obo:CL_0000003)
|-- refexo:sampleReference / refexo:belongsToDisease *
| `-- disease (obo:DOID_0050686)
|-- refexo:sampleReference / refexo:belongsToDevelopmentSite *
| `-- dev_site (obo:CL_0000134)
`-- refexo:sampleReference / refexo:sample *
`-- refexo_sample (<http://fantom.gsc.riken.jp/5/sstar/FF:10828-111C9>)
% bin/rdf-config --config config/refex --schema > refex.svg
% bin/rdf-config --config config/refex --sparql
# Endpoint: https://integbio.jp/rdf/sparql
# Description: RDFized reference gene expresson dataset derived from CAGE and GeneChip experiments in the RefEx database.
PREFIX refexo: <http://purl.jp/bio/01/refexo#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?refex_id ?ex_value ?see_also ?RefExSample ?sample_id ?taxonomy ?age ?stage ?description ?cell_type ?disease ?dev_site ?refexo_sample
WHERE {
?RefExEntry a refexo:RefExEntry ;
dct:identifier ?refex_id ;
refexo:expValue ?ex_value ;
rdfs:seeAlso ?see_also .
?RefExSample a refexo:RefExSample ;
dct:identifier ?sample_id .
OPTIONAL{ ?RefExSample refexo:organism ?taxonomy . }
OPTIONAL{ ?RefExSample refexo:age ?age . }
OPTIONAL{ ?RefExSample refexo:developmentalStage ?stage . }
OPTIONAL{ ?RefExSample refexo:refexRefinedDescription ?description . }
OPTIONAL{ ?RefExSample refexo:sampleReference / refexo:belongsToCellType ?cell_type . }
OPTIONAL{ ?RefExSample refexo:sampleReference / refexo:belongsToDisease ?disease . }
OPTIONAL{ ?RefExSample refexo:sampleReference / refexo:belongsToDevelopmentSite ?dev_site . }
OPTIONAL{ ?RefExSample refexo:sampleReference / refexo:sample ?refexo_sample . }
}
LIMIT 100
If multiple sparql configs are provided in the sparql.yaml
file, the config (sparql) name can be specified as --sparql sparql_name
(default sparql_name is sparql
).
% bin/rdf-config --config config/mesh --sparql tree_pair
If multiple sparql endpoints are provided in the endpoint.yaml
file, the config (endpoint) name can be specified as --sparql :endpoint_name
(default endpoint_name is endpoint
) or in combination with the sparql name as --sparql sparql_name:endpoint_name
.
% bin/rdf-config --config config/mesh --sparql :med2rdf
% bin/rdf-config --config config/mesh --sparql tree_pair:med2rdf
% bin/rdf-config --config config/nbrc --shex
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX obo: <http://purl.obolibrary.org/obo/>
PREFIX refexo: <http://purl.jp/bio/01/refexo#>
<RefExEntryShape> {
rdf:type [refexo:RefExEntry] ;
refexo:expValue xsd:string ;
dct:identifier xsd:string ;
rdfs:seeAlso IRI ;
refexo:refexSample @<RefExSampleShape>
}
<RefExSampleShape> {
rdf:type [refexo:RefExSample] ;
dct:identifier xsd:string ;
refexo:organism IRI ? ;
refexo:age IRI * ;
refexo:sex IRI ? ;
refexo:developmentalStage xsd:string * ;
refexo:refexSampleCategory xsd:string * ;
refexo:refexRefinedDescription xsd:string * ;
refexo:originalDescription xsd:string * ;
refexo:refexAlphabeticalUniqOrder xsd:integer ? ;
refexo:refexTissueClass10 IRI ? ;
refexo:refexTissueClass40 IRI ? ;
refexo:sampleReference BNode
}
Generate Grasp config
% bin/rdf-config --config config/refex --grasp
Grasp files have been created successfully.
% ls grasp/refex/
query.graphql schema/
JavaScript version
% bin/rdf-config --config config/hint --stanza hint_pair
Stanza template has been generated successfully.
To view the stanza, run (cd stanza/javascript; ts server) and open http://localhost:8080/
Ruby version (it may take a while for the first time to install dependencies)
% bin/rdf-config --config config/hint --stanza_rb hint_pair
Stanza template has been generated successfully.
To view the stanza, run (cd stanza/ruby; bundle exec rackup) and open http://localhost:9292/
% docker run --rm -it -v <path to config file dir>:/config dbcls/rdf-config:<docker image tag> rdf-config --config /config/<config dir name> [options]
See available docker image tags at Docker Hub
- Toshiaki Katayama (DBCLS)
- Tatsuya Nishizawa (IMSBIO)
- MIT License