UNPKG

molstar

Version:

A comprehensive macromolecular library.

14 lines (13 loc) 535 B
/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> */ import { Column } from '../../../mol-data/db'; import { RuntimeContext } from '../../../mol-task'; import { AtomSite } from './schema'; export declare type SortedAtomSite = { atom_site: AtomSite; sourceIndex: Column<number>; }; export declare function sortAtomSite(ctx: RuntimeContext, atom_site: AtomSite, start: number, end: number): Promise<SortedAtomSite>;