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

Bug: Release: medgen-disease-extract.owl too large #10

Open
joeflack4 opened this issue Aug 28, 2023 · 1 comment
Open

Bug: Release: medgen-disease-extract.owl too large #10

joeflack4 opened this issue Aug 28, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@joeflack4
Copy link
Contributor

Overview

@matentzn Not that it matters too much because we are not using medgen-disease-extract.owl; we may be switching our ingest process over to the MedGen team. But basically, the problem here I think is that this file has increased from 700MB before to now over 2GB (the limit for GH release files) due to us adding duplicate classes and xrefs (e.g. as in the second block below)

    if ($id =~ /^CN\d+/) {
        add_triples('MEDGENCUI', $id);
    # If a CUI (starts with 'C'), will be created twice: one for MEDGENCUI, one for UMLS
    } elsif ($id =~ /^C\d+/) {
        add_triples('UMLS', $id);
        add_triples('MEDGENCUI', $id);
    # UID
    } else {
        add_triples('MEDGEN', $id);
    }
@matentzn
Copy link
Member

No worries! If we need to run aligments, we will set up a Jenkins job instead of GHA! Thanks for making the issue.

@joeflack4 joeflack4 added the bug Something isn't working label Aug 28, 2023
This was referenced Oct 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants