You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@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);
}
The text was updated successfully, but these errors were encountered:
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)The text was updated successfully, but these errors were encountered: