- - - - - - - - - -
view on github
getting started
common errors
chaining commands
global options
makefile
plugins
- - - - - - - - - -
annotate
collapse
convert
diff
expand
explain
export
export-prefixes
extract
filter
materialize
measure
merge
mirror
python
query
reason
reduce
relax
remove
rename
repair
report
template
unmerge
validate-profile
verify
- - - - - - - - - -
ROBOT is licensed under the
BSD 3-Clause License.
Theme by orderedlist
ROBOT can be used to remove redundant subClassOf axioms:
robot reduce --reasoner ELK \
--input ribosome.owl \
--output results/reduced.owl
See reason for details on supported reasoners (EMR is not supported in reduce
).
Available options for reduce
:
--preserve-annotated-axioms
: if set to true, axioms that have axiom annotations will not be removed, even if found to be redundant (default false
).--named-classes-only
: if set to true, only subclass axioms between named classes will be checked for redundancy. Anonymous class expressions will be ignored (default false
).Reciprocal subclass axioms (e.g. A SubClassOf B
, B SubClassOf A
), entailing equivalence between A
and B
, may be removed by reduce
. In this case it is important to
assert an equivalence axiom (A EquivalentTo B
) using the reason
command before running reduce.