UNPKG

molstar

Version:

A comprehensive macromolecular library.

13 lines (12 loc) 419 B
/** * Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> */ import fetch from 'node-fetch'; import { createMapping } from './mapping'; (async function () { const data = await fetch('https://www.ebi.ac.uk/pdbe/api/mappings/1tqn?pretty=true'); const json = await data.json(); console.log(createMapping(json)); }());