UNPKG

molstar

Version:

A comprehensive macromolecular library.

14 lines (13 loc) 800 B
/** * Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> */ import { Assembly } from '../../../mol-model/structure/model/properties/symmetry'; import { Table } from '../../../mol-data/db'; import { mmCIF_Schema } from '../../../mol-io/reader/cif/schema/mmcif'; declare type StructAssembly = Table<mmCIF_Schema['pdbx_struct_assembly']>; declare type StructAssemblyGen = Table<mmCIF_Schema['pdbx_struct_assembly_gen']>; declare type StructOperList = Table<mmCIF_Schema['pdbx_struct_oper_list']>; export declare function createAssemblies(pdbx_struct_assembly: StructAssembly, pdbx_struct_assembly_gen: StructAssemblyGen, pdbx_struct_oper_list: StructOperList): ReadonlyArray<Assembly>; export {};