12345678910111213141516171819202122232425262728293031323334353637383940 |
- import * as Formats from './model/formats'
- import MacromoleculeData from './model/data/macromolecule'
- import ConformationData from './model/data/conformation'
- import Segmentation from '../mol-base/collections/integer/segmentation'
- interface Model extends Readonly<{
- id: string,
- model_num: number,
- sourceData: Formats.RawData,
- macromolecule: MacromoleculeData,
- conformation: ConformationData,
-
- version: {
- data: number,
- conformation: number
- },
- atomCount: number,
- segments: Readonly<{
- chains: Segmentation,
- residues: Segmentation
- }>
- }> { }
- export default Model
|