Skip to content

Commit

Permalink
edit readme
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Jul 10, 2024
1 parent 3486ca0 commit fc46250
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ parameters to include inferred axiom generators:

Validate the input ontology against OWL profiles (DL, EL, QL, RL, and Full). The ontology is annotated in the output graph.

### Process valid OWL profiles from input

If enabled along with the "Validate OWL2 profiles" parameter, the list of valid profiles is taken from the plugin input,
without validating the ontology against the profiles in the plugin. The inputs need to include the entity paths "profile"
for the valid profiles, and "ontology" for the ontology IRI. If the "Validate OWL2 profiles" parameter is enabled in the
"Validate" plugin, it can be directly connected to the input of the "Reason" plugin.


### Maximum RAM Percentage

Maximum heap size for the Java virtual machine in the DI container running the reasoning process.
Expand Down Expand Up @@ -138,7 +146,8 @@ Raise an error if inconsistencies are found. If enabled, the plugin does not out
### Validate OWL2 profiles

Validate the input ontology against OWL profiles (DL, EL, QL, RL, and Full). The valid profiles are added to the output
Markdown file and the ontology is annotated in the output graph. The plugin outputs the profiles using the path "profile".
Markdown file and the ontology is annotated in the output graph. The plugin outputs the profiles with path "profile",
and the ontology IRI with path "ontology".

### Maximum RAM Percentage

Expand Down
5 changes: 3 additions & 2 deletions cmem_plugin_reason/plugin_reason.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,9 @@
param_type=BoolParameterType(),
name="input_profiles",
label="Process valid OWL profiles from input",
description="""If the "validate OWL profiles" is enabled, take values from the input on
path "profile" instead of running the validation in the plugin.""",
description="""If the "validate OWL profiles" parameter is enabled, take values from the
input (paths "profile" and "ontology") instead of running the validation in the plugin.
""",
default_value=False,
advanced=True,
),
Expand Down

0 comments on commit fc46250

Please sign in to comment.