Inference ================ Commands for set up basic OWL/RDF inferences in the [DOREMUS Virtuoso Triplestore](http://data.doremus.org/sparql). See also the [Virtuoso documentation](http://docs.openlinksw.com/virtuoso/fn_rdfs_rule_set/) ## Install We consider that the 3 [ontologies](https://github.com/DOREMUS-ANR/doremus-ontology/) have been loaded in the `` graph. We load in the `/data` folder all the ontologies we want to inference (i.e. [skos.rdf](https://www.w3.org/2009/08/skos-reference/skos.rdf)). docker exec -it virtuoso_doremus bash /usr/local/virtuoso-opensource/bin/isql-v ld_dir ('/data', 'skos.rdf', 'http://data.doremus.org/commons'); # add inference rules rdfs_rule_set('mus','http://data.doremus.org/ontology'); rdfs_rule_set('mus','http://data.doremus.org/commons'); ## Use Querying the [SPARQL endpoint](http://data.doremus.org/sparql), it is required to add `DEFINE input:inference 'mus'` on top of the query. #### Examples ```sparql DEFINE input:inference 'mus' SELECT * WHERE { ?dedication mus:U44i_is_dedication_statement_of ?expression } LIMIT 100 ``` [results with inference](http://data.doremus.org/sparql?default-graph-uri=&query=DEFINE+input%3Ainference+%27mus%27%0D%0A%0D%0Aselect+*+where+%7B+%3Fdedication+mus%3AU44i_is_dedication_statement_of+%3Fexpression+%7DLIMIT+100&format=text%2Fhtml&timeout=0&debug=on) - [results without inference](http://data.doremus.org/sparql?default-graph-uri=&query=select+*+where+%7B+%3Fdedication+mus%3AU44i_is_dedication_statement_of+%3Fexpression+%7DLIMIT+100&format=text%2Fhtml&timeout=0&debug=on) ```sparql DEFINE input:inference 'mus' SELECT * WHERE { ?a skos:inScheme } ``` [results with inference](http://data.doremus.org/sparql?default-graph-uri=&query=DEFINE+input%3Ainference+%27mus%27%0D%0Aselect+*+where+%7B+%3Fa+skos%3AinScheme+%3Chttp%3A%2F%2Fdata.doremus.org%2Fvocabulary%2Fiaml%2Fmop%2F%3E+%7D%0D%0A&format=text%2Fhtml&timeout=0&debug=on) (they include also `skos:isTopConceptOf`, subproperty of `skos:inScheme`) [results without inference](http://data.doremus.org/sparql?default-graph-uri=&query=select+*+where+%7B+%3Fa+skos%3AinScheme+%3Chttp%3A%2F%2Fdata.doremus.org%2Fvocabulary%2Fiaml%2Fmop%2F%3E+%7D%0D%0A&format=text%2Fhtml&timeout=0&debug=on)