|
@@ -20,7 +20,7 @@ import { Topology } from '../topology';
|
|
|
import { Task } from '../../../mol-task';
|
|
|
import { IndexPairBonds } from '../../../mol-model-formats/structure/property/bonds/index-pair';
|
|
|
import { createModels } from '../../../mol-model-formats/structure/basic/parser';
|
|
|
-import { CCDFormat, MmcifFormat } from '../../../mol-model-formats/structure/mmcif';
|
|
|
+import { MmcifFormat } from '../../../mol-model-formats/structure/mmcif';
|
|
|
import { ChainIndex, ElementIndex } from './indexing';
|
|
|
import { SymmetryOperator } from '../../../mol-math/geometry';
|
|
|
import { ModelSymmetry } from '../../../mol-model-formats/structure/property/symmetry';
|
|
@@ -200,17 +200,6 @@ export namespace Model {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
- const CCDCoordinateTypeProp = '__CCDCoordinateType__';
|
|
|
- export type CCDCoordinateType = { readonly coordinateType: CCDFormat.CoordinateType }
|
|
|
- export const CCDCoordinateType = {
|
|
|
- get(model: Model): CCDCoordinateType {
|
|
|
- return model._dynamicPropertyData[CCDCoordinateTypeProp] || { coordinateType: CCDFormat.CoordinateType.Ideal };
|
|
|
- },
|
|
|
- set(model: Model, ccdCoordinateType: CCDCoordinateType) {
|
|
|
- return model._dynamicPropertyData[CCDCoordinateTypeProp] = ccdCoordinateType;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
const AsymIdCountProp = '__AsymIdCount__';
|
|
|
export type AsymIdCount = { readonly auth: number, readonly label: number }
|
|
|
export const AsymIdCount = {
|