@geneontology/curie-util-es5

Javascript Library to Translate CURIEs to IRIs and vice versa. ES5 Version.

Usage no npm install needed!

<script type="module">
  import geneontologyCurieUtilEs5 from 'https://cdn.skypack.dev/@geneontology/curie-util-es5';
</script>

README

curie-util-js

Javascript Library to translate CURIEs to IRIs and vice versa. ES5 Version based on the Java Implementation: https://github.com/prefixcommons/curie-util

Install

npm install --save @geneontology/curie-util-es5

Use require or import to use the package in your JavaScript code

Usage

Retrieve a JSON-LD file such as: https://github.com/prefixcommons/biocontext/blob/master/registry/go_context.jsonld

var map = parseContext(json);
var curie = new CurieUtil(map);

Get IRI

curie.getIri("ZFIN:ZDB-GENE-031112-7");
curie.getIri("MGI:MGI:34340");

Get CURIE

curie.getCurie("http://identifiers.org/zfin/ZDB-GENE-031112-7");
curie.getCurie("http://identifiers.org/mgi/MGI:34340");

Notes