Skip to content
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

Bugfix: omim.sssom.tsv #102

Merged
merged 1 commit into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After confirming the fix worked locally, I reactivated omim.sssom.tsv for the action, ran it, and confirmed it generated a new release successfully with omim.sssom.tsv included.



- 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))
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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