Skip to content

Commit db121c8

Browse files
committed
Fix the minimal module type.
The code that generates the `minimal` module type is supposed, at some point, to select classes, individuals, and annotation properties. However, the rule is incorrectly written as --select "classes individual annotation-properties" which is incorrect because the keyword that ROBOT expects to select individuals is `individuals` (with a final `-s`) -- `individual` without a `-s` is ignored.
1 parent a8230e7 commit db121c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/incatools/odk/templates/src/ontology/Makefile.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ $(IMPORTDIR)/{{ ont.id }}_import.owl: $(MIRRORDIR)/{{ ont.id }}.owl $(IMPORTDIR)
736736
--term {{ p }} \{% endfor %}
737737
--term-file $(IMPORTDIR)/{{ ont.id }}_terms.txt $(T_IMPORTSEED) \
738738
--select complement \
739-
--select "classes individual annotation-properties" \
739+
--select "classes individuals annotation-properties" \
740740
$(ANNOTATE_CONVERT_FILE)
741741
{% elif 'custom' -%}
742742
$(IMPORTDIR)/{{ ont.id }}_import.owl: {% if 'no_mirror' != ont.mirror_type %}$(MIRRORDIR)/{{ ont.id }}.owl{% endif %}

0 commit comments

Comments
 (0)