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
All of the NCBI services have upgraded to using HTTPS but several of the URLs in the context JSON-LD are still using HTTP URL.
This results in no CURIE returned when contracting a URI using curie_util.contract_uri().
For example,
# URI with https yields no resultcurie_util.contract_uri('https://www.ncbi.nlm.nih.gov/gene/9628')
[]
# URI with http yields the correct CURIEcurie_util.contract_uri('http://www.ncbi.nlm.nih.gov/gene/9628')
['NCBIGene:9628']
But it's not clear ahead of time if all the incoming URIs are HTTP or HTTPS.
All of the NCBI services have upgraded to using HTTPS but several of the URLs in the context JSON-LD are still using HTTP URL.
This results in no CURIE returned when contracting a URI using
curie_util.contract_uri()
.For example,
But it's not clear ahead of time if all the incoming URIs are HTTP or HTTPS.
@cmungall
The text was updated successfully, but these errors were encountered: