From e230e9966ffc481f1917007e949e855067176a47 Mon Sep 17 00:00:00 2001 From: Jim Balhoff Date: Mon, 9 May 2022 15:41:03 -0400 Subject: [PATCH] Use correct IRI form for RNAcentral. --- bin/fix-obo-uris.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/fix-obo-uris.pl b/bin/fix-obo-uris.pl index c0ee4a2..873aef5 100755 --- a/bin/fix-obo-uris.pl +++ b/bin/fix-obo-uris.pl @@ -7,6 +7,7 @@ s@http://purl.obolibrary.org/obo/GR_protein_@http://identifiers.org/uniprot/@g; s@http://purl.obolibrary.org/obo/dictyBase#_@http://identifiers.org/dictybase.gene/@g; s@http://purl.obolibrary.org/obo/ComplexPortal_@https://www.ebi.ac.uk/complexportal/complex/@g; +s@http://purl.obolibrary.org/obo/RNAcentral#_@http://rnacentral.org/rna/@g; # The optional hash in the match deals with some odd OWLAPI OBO parser behavior s@http://purl.obolibrary.org/obo/(ZFIN|FB|WB|SGD|PomBase|RGD|MGI|Xenbase|UniProtKB|TAIR:\s+)#?_@"http://identifiers.org/".fix($1)."/"@eg;