Skip to content

Commit

Permalink
Fix case of prefixes for obo-db-ingest files
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Dec 4, 2023
1 parent 75d8f85 commit b87e623
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ontologies.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ download/interpro.owl: STAMP
.PRECIOUS: download/interpro.owl

db/interpro.owl: download/interpro.owl
perl -npe 's@go:@GO:@g;s@ro:@RO:@g;s@interpro:@InterPro:@g' $< > $@.tmp && robot convert -i $@.tmp -o $@
perl -npe 's@ go:@ GO:@g;s@ ro:@ RO:@g;s@ interpro:@ InterPro:@g' $< > $@.tmp && robot convert -i $@.tmp -o $@


download/hgnc.genegroup.owl: STAMP
Expand Down
2 changes: 1 addition & 1 deletion src/semsql/builder/registry/ontologies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ ontologies:
## See https://github.com/INCATools/semantic-sql/issues/45
interpro:
url: https://w3id.org/biopragmatics/resources/interpro/interpro.obo
build_command: "perl -npe 's@go:@GO:@g;s@ro:@RO:@g;s@interpro:@InterPro:@g' $< > $@.tmp && robot convert -i $@.tmp -o $@"
build_command: "perl -npe 's@ go:@ GO:@g;s@ ro:@ RO:@g;s@ interpro:@ InterPro:@g' $< > $@.tmp && robot convert -i $@.tmp -o $@"
format: obo
prefixmap:
InterPro: http://purl.obolibrary.org/obo/InterPro_
Expand Down

0 comments on commit b87e623

Please sign in to comment.