|
@@ -1,5 +1,5 @@
|
|
|
/**
|
|
|
- * Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
|
|
|
+ * Copyright (c) 2020-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
|
|
|
*
|
|
|
* @author Sebastian Bittrich <sebastian.bittrich@rcsb.org>
|
|
|
*/
|
|
@@ -88,14 +88,14 @@ export abstract class LigandEncoder implements Encoder<string> {
|
|
|
return StringBuilder.getString(this.builder);
|
|
|
}
|
|
|
|
|
|
- protected getAtoms<Ctx>(instance: Category.Instance<Ctx>, source: any): Map<string, Atom> {
|
|
|
+ protected getAtoms<Ctx>(instance: Category.Instance<Ctx>, source: any, ccdAtoms: ComponentAtom.Entry['map']): Map<string, Atom> {
|
|
|
const sortedFields = this.getSortedFields(instance, ['Cartn_x', 'Cartn_y', 'Cartn_z']);
|
|
|
const label_atom_id = this.getField(instance, 'label_atom_id');
|
|
|
const type_symbol = this.getField(instance, 'type_symbol');
|
|
|
- return this._getAtoms(source, sortedFields, label_atom_id, type_symbol);
|
|
|
+ return this._getAtoms(source, sortedFields, label_atom_id, type_symbol, ccdAtoms);
|
|
|
}
|
|
|
|
|
|
- private _getAtoms(source: any, fields: Field<any, any>[], label_atom_id: Field<any, any>, type_symbol: Field<any, any>): Map<string, Atom> {
|
|
|
+ private _getAtoms(source: any, fields: Field<any, any>[], label_atom_id: Field<any, any>, type_symbol: Field<any, any>, ccdAtoms: ComponentAtom.Entry['map']): Map<string, Atom> {
|
|
|
const atoms = new Map<string, Atom>();
|
|
|
let index = 0;
|
|
|
|
|
@@ -111,6 +111,8 @@ export abstract class LigandEncoder implements Encoder<string> {
|
|
|
const key = it.move();
|
|
|
|
|
|
const lai = label_atom_id.value(key, data, index) as string;
|
|
|
+ // ignore all atoms not registered in the CCD
|
|
|
+ if (!ccdAtoms.has(lai)) continue;
|
|
|
// ignore all alternate locations after the first
|
|
|
if (atoms.has(lai)) continue;
|
|
|
|