Skip to content

Commit

Permalink
Updates to vocab
Browse files Browse the repository at this point in the history
  • Loading branch information
matentzn committed May 19, 2022
1 parent 6ed1dc4 commit e9ed406
Show file tree
Hide file tree
Showing 9 changed files with 2,369 additions and 82 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

.DS_Store
19 changes: 14 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
ONTBASE=http://w3id.org/omapv
ROBOT=robot
ONTBASE=http://w3id.org/semapv
ROBOT=robot -vvv

all: omapv.owl
all: semapv.owl

omapv.owl: omapv.tsv
$(ROBOT) template --template $< --prefix "OMAPV: http://w3id.org/omapv/vocab/" \
semapv-terms.owl: semapv-terms.tsv
$(ROBOT) template --template $< --prefix "skos: http://www.w3.org/2004/02/skos/core#" --prefix "semapv: http://w3id.org/semapv/vocab/" \
annotate --ontology-iri $(ONTBASE)/vocab -o $@

SEMAPV_TERMS_URL=https://docs.google.com/spreadsheets/d/e/2PACX-1vQS6dVyRqEdXCtimXw1nxX77NCmJCfm_2sOL0eCkt_7MlTt8wCNgE8iw9pLACPIuwZDvu64WtsqtREQ/pub?gid=0&single=true&output=tsv

semapv-terms.tsv:
wget "$(SEMAPV_TERMS_URL)" -O $@

semapv.owl: semapv-metadata.owl semapv-terms.owl
$(ROBOT) merge -i semapv-metadata.owl -i semapv-terms.owl -o $@

Loading

0 comments on commit e9ed406

Please sign in to comment.