owlapi_interface¶
Python interface to the FaCT++ Reasoner.
This module is copied from the SimPhoNy project.
Original author: Matthias Urban
OwlApiInterface
¶
Interface to the FaCT++ reasoner via OWLAPI.
Source code in ontopy/factpluspluswrapper/owlapi_interface.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|
__init__()
¶
Initialize the interface.
Source code in ontopy/factpluspluswrapper/owlapi_interface.py
23 24 |
|
_run(*owl_files, command, output_file=None, return_graph=True)
staticmethod
¶
Run the FaCT++ reasoner using a java command.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*owl_files |
str
|
Path to the owl files to load. |
()
|
command |
str
|
Either --run-reasoner or --merge-only |
required |
output_file |
str
|
Where the output should be stored. Defaults to None. |
None
|
return_graph |
bool
|
Whether the result should be parsed and returned. Defaults to True. |
True
|
Returns:
Type | Description |
---|---|
rdflib.Graph
|
The reasoned result. |
Source code in ontopy/factpluspluswrapper/owlapi_interface.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|
merge_files(*owl_files)
¶
Merge the given owl files and its import closure.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*owl_files |
os.path
|
The owl files two merge. |
()
|
Source code in ontopy/factpluspluswrapper/owlapi_interface.py
46 47 48 49 50 51 52 53 |
|
reason(graph)
¶
Generate the inferred axioms for a given Graph.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
graph |
Graph
|
An rdflib graph to execute the reasoner on. |
required |
Source code in ontopy/factpluspluswrapper/owlapi_interface.py
26 27 28 29 30 31 32 33 34 35 |
|
reason_files(*owl_files)
¶
Merge the given owl and generate the inferred axioms.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*owl_files |
os.path
|
The owl files two merge. |
()
|
Source code in ontopy/factpluspluswrapper/owlapi_interface.py
37 38 39 40 41 42 43 44 |
|
reason_from_terminal()
¶
Run the reasoner from terminal.
Source code in ontopy/factpluspluswrapper/owlapi_interface.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|