File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,9 @@ ANNOTATE_VERSION_IRI = annotate -V $(ONTBASE)/releases/`date +%Y-%m-%d`/
[email protected]
130
130
131
131
# by default we use ELK to perform a reason-relax-reduce chain
132
132
# after that we annotate the ontology with the release versionInfo
133
- $(ONT ) .owl : $(SRC )
133
+ $(SRC ) .relaxed.obo : $(SRC )
134
+ ./relax-qcrs.pl $< > $@ .tmp && mv $@ .tmp $@
135
+ $(ONT ) .owl : $(SRC ) .relaxed.obo
134
136
$(ROBOT ) reason --input $< --reasoner ELK \
135
137
relax \
136
138
reduce -r ELK \
@@ -235,7 +237,7 @@ IM=build-$(ONT)
235
237
build-docker :
236
238
docker build -t $(ONT ) .
237
239
238
-
240
+ include upa.Makefile
239
241
240
242
241
243
Original file line number Diff line number Diff line change
1
+ # !/usr/bin/perl
2
+
3
+ while (<>) {
4
+ print ;
5
+ if (m @ cardinality="(\d +)"@ ) {
6
+ if ($1 ) {
7
+ s @\s +\{ .*\} *@ @ ;
8
+ print ;
9
+ }
10
+ }
11
+ }
You can’t perform that action at this time.
0 commit comments