Skip to content

Commit

Permalink
- Bugfix: omim.sssom.tsv was not able to be built due to missing onto…
Browse files Browse the repository at this point in the history
…logy declaration
  • Loading branch information
joeflack4 committed Jul 5, 2023
1 parent 464fc9e commit 7d6132f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/buid_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ jobs:
- name: build
# TODO: change to make all when fixed: https://github.com/monarch-initiative/omim/issues/92
run: |
make automated-release-artefacts
# make all
make all
- name: Release
Expand All @@ -43,4 +42,4 @@ jobs:
# TODO: include omim.sssom.tsv when fixed: https://github.com/monarch-initiative/omim/issues/92
files: |
omim.ttl
# omim.sssom.tsv
omim.sssom.tsv
3 changes: 1 addition & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
.PHONY: all help install test scrape get-pmids automated-release-artefacts cleanup
.PHONY: all help install test scrape get-pmids cleanup


# MAIN COMMANDS / GOALS ------------------------------------------------------------------------------------------------
all: omim.ttl omim.sssom.tsv
automated-release-artefacts: omim.ttl

# build: Create new omim.ttl
omim.ttl:
Expand Down
1 change: 1 addition & 0 deletions omim2obo/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ def omim2obo(use_cache: bool = False):

# Populate graph
# - Non-OMIM triples
graph.add((URIRef('http://purl.obolibrary.org/obo/mondo/omim.owl'), RDF.type, OWL.Ontology))
graph.add((URIRef('http://www.geneontology.org/formats/oboInOwl#hasSynonymType'), RDF.type, OWL.AnnotationProperty))
graph.add((BIOLINK['has_evidence'], RDF.type, OWL.AnnotationProperty))
graph.add((TAX_URI, RDF.type, OWL.Class))
Expand Down

0 comments on commit 7d6132f

Please sign in to comment.