Skip to content

Commit a5b0be8

Browse files
authored
Merge pull request #399 from obophenotype/391_DOSDP_entity_response_quality_in_location
Create DOSDP entity_response_quality_in_location
2 parents 3da8a06 + 91691bb commit a5b0be8

7 files changed

Lines changed: 145 additions & 22 deletions

File tree

docs/odk-workflows/RepositoryFileStructure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ These are the current imports in OBA
3434
| bfo | http://purl.obolibrary.org/obo/bfo.owl | slme |
3535
| swisslipids | http://purl.obolibrary.org/obo/swisslipids.owl | slme |
3636
| lipidmaps | http://purl.obolibrary.org/obo/lipidmaps.owl | slme |
37-
| NCIT | http://purl.obolibrary.org/obo/ncit/ncit-obo-slim.owl | slme |
37+
| ncit | https://raw.githubusercontent.com/ncit-obo-org/ncit-obo-edition/refs/heads/main/src/ontology/ncit-obo-slim.owl | slme |
3838
| obi | http://purl.obolibrary.org/obo/obi.owl | slme |
3939
## Components
4040
Components, in contrast to imports, are considered full members of the ontology. This means that any axiom in a component is also included in the ontology base - which means it is considered _native_ to the ontology. While this sounds complicated, consider this: conceptually, no component should be part of more than one ontology. If that seems to be the case, we are most likely talking about an import. Components are often not needed for ontologies, but there are some use cases:

src/ontology/Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# More information: https://github.com/INCATools/ontology-development-kit/
1111

1212
# Fingerprint of the configuration file when this Makefile was last generated
13-
CONFIG_HASH= dad4899e88a64ae343570352704633ac3ff6b31c8a29a1c07468b3ed911c3f4f
13+
CONFIG_HASH= 94c86e053724308c99bae000b4bf10b1681e0d6837f08a132a1e414ccd18775a
1414

1515

1616
# ----------------------------------------
@@ -193,7 +193,7 @@ all_main: $(MAIN_FILES)
193193
# ----------------------------------------
194194

195195

196-
IMPORTS = ro chebi goplus go pato omo hp mondo ncbitaxon uberon cl nbo pr so po bfo swisslipids lipidmaps NCIT obi
196+
IMPORTS = ro chebi goplus go pato omo hp mondo ncbitaxon uberon cl nbo pr so po bfo swisslipids lipidmaps ncit obi
197197

198198
IMPORT_ROOTS = $(IMPORTDIR)/merged_import
199199
IMPORT_OWL_FILES = $(foreach n,$(IMPORT_ROOTS), $(n).owl)
@@ -668,11 +668,11 @@ $(MIRRORDIR)/lipidmaps.owl:
668668
echo "ERROR: You have configured your default mirror type to be custom; this behavior needs to be overwritten in oba.Makefile!" && false
669669

670670

671-
## ONTOLOGY: NCIT
672-
.PHONY: mirror-NCIT
673-
.PRECIOUS: $(MIRRORDIR)/NCIT.owl
674-
mirror-NCIT: | $(TMPDIR)
675-
$(ROBOT) remove -I http://purl.obolibrary.org/obo/ncit/ncit-obo-slim.owl --base-iri http://purl.obolibrary.org/obo/NCIT --axioms external --preserve-structure false --trim false -o $(TMPDIR)/$@.owl
671+
## ONTOLOGY: ncit
672+
.PHONY: mirror-ncit
673+
.PRECIOUS: $(MIRRORDIR)/ncit.owl
674+
mirror-ncit: | $(TMPDIR)
675+
$(ROBOT) remove -I https://raw.githubusercontent.com/ncit-obo-org/ncit-obo-edition/refs/heads/main/src/ontology/ncit-obo-slim.owl --base-iri http://purl.obolibrary.org/obo/NCIT --axioms external --preserve-structure false --trim false -o $(TMPDIR)/$@.owl
676676

677677

678678
## ONTOLOGY: obi

0 commit comments

Comments
 (0)