Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand application.conf.example further #155

Merged
merged 1 commit into from
Aug 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions src/main/resources/application.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,29 @@ owlery {
port = 8080
host = localhost
kbs = [
{
name = phenoscape
# Location of the ontology file to load. If this is a folder, all files in the folder will be imported into one ontology.
location = "/Users/jim/Desktop/owlery/phenoscape"
# Reasoner should be "structural", "elk", "hermit", "jfact", or "whelk"
# structural does no DL reasoning
# elk and whelk are limited to the OWL EL profile (whelk additionally supports some of OWL RL for individuals)
# hermit and jfact are OWL DL reasoners.
reasoner = elk
},
{
name = uberon
# If 'location' is an IRI, the ontology will be obtained either by downloading from the IRI, or located according to a catalog file.
location = "http://purl.obolibrary.org/obo/uberon/ext.owl"
reasoner = structural
# The catalog file maps ontology IRIs to URLs or file locations (same format used by Protege)
catalog = "catalog.xml"
},
{
name = phenoscape
location = "/Users/jim/Desktop/owlery/phenoscape"
reasoner = elk
},

{
name = tto
location = "/Users/jim/Desktop/owlery/tto"
# location may be a local directory name or a URL.
reasoner = structural
# reasoner should be "structural", "elk", "hermit", "jfact", or "whelk"
# structural does no DL reasoning
# elk and whelk are limited to the OWL EL profile
# hermit and jfact are OWL DL reasoners.
}
]
}
}