-
Notifications
You must be signed in to change notification settings - Fork 12
/
application.conf.example
39 lines (36 loc) · 1.17 KB
/
application.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
akka {
loglevel = INFO
}
akka.http.server {
request-timeout = infinite
idle-timeout = infinite
}
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 = tto
location = "/Users/jim/Desktop/owlery/tto"
reasoner = structural
}
]
}