UNPKG

molstar

Version:

A comprehensive macromolecular library.

16 lines (15 loc) 440 B
/** * Copyright (c) 2017-2022 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> * * Adapted from MolQL project */ import { transpiler as jmol } from './jmol/parser'; import { transpiler as pymol } from './pymol/parser'; import { transpiler as vmd } from './vmd/parser'; export var _transpiler = { pymol: pymol, vmd: vmd, jmol: jmol, };