-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove or modify usages of "non-redundant" relation-graph output #32
Comments
It is currently built by merging Let's try
will it be unacceptably larger? RELEASE_ARTEFACTS = $(ONT)-relation-graph.owl $(ONT).json $(ONT)-classes.json $(ONT).owl
$(ONT)-relation-graph.owl: $(ONT).owl $(ONT)-merged-labels.ttl
# build relation-graph from nmdc-merged.ttl file
# for relation-graph see https://github.com/balhoff/relation-graph
# note, you may need to increase Java memory: export JAVA_OPTS=-Xmx16G
@echo "\n** building $@ **"
relation-graph --ontology-file $< \
--reflexive-subclasses false \
--equivalence-as-subclass false \
--non-redundant-output-file $(ONT)-nonredundant.ttl \
--redundant-output-file $(ONT)-redundant.ttl \
--mode rdf
# merge in nmdco-merged for annotations
$(ROBOT) merge \
--input $(word 2, $^) \
--input $(ONT)-nonredundant.ttl \
annotate --ontology-iri $(ONTBASE)/$@ \
$(ANNOTATE_ONTOLOGY_VERSION) \
--output $@ |
With non-redundant input:
|
With relation-graph 2.3 output:
|
The current 2+ relation-graph doesn't attempt to create non-redundant output because it never really did create non-redundant output.
see also
The text was updated successfully, but these errors were encountered: