|
@@ -85,9 +85,10 @@ function tmDetSymmetryFromMmCif(model: Model, excludedChains: string[]) {
|
|
|
DebugUtil.log('Included chains:', result);
|
|
|
|
|
|
DebugUtil.log('oper_list table: original:', Table.formatToString(data.pdbx_struct_oper_list));
|
|
|
- DebugUtil.log('oper_list table: first row', Table.formatToString(
|
|
|
- Table.ofRows(data.pdbx_struct_oper_list._schema, [ Table.getRow(data.pdbx_struct_oper_list, 0) ]))
|
|
|
+ const only_identity_operation = Table.ofRows(
|
|
|
+ data.pdbx_struct_oper_list._schema, [ Table.getRow(data.pdbx_struct_oper_list, 0) ]
|
|
|
);
|
|
|
+ DebugUtil.log('oper_list table: first row', Table.formatToString(only_identity_operation));
|
|
|
|
|
|
return ModelSymmetry.fromData({
|
|
|
symmetry: data.symmetry,
|
|
@@ -96,7 +97,7 @@ function tmDetSymmetryFromMmCif(model: Model, excludedChains: string[]) {
|
|
|
atom_sites: data.atom_sites,
|
|
|
pdbx_struct_assembly: data.pdbx_struct_assembly,
|
|
|
pdbx_struct_assembly_gen: updated_pdbx_struct_assembly_gen,
|
|
|
- pdbx_struct_oper_list: data.pdbx_struct_oper_list
|
|
|
+ pdbx_struct_oper_list: only_identity_operation
|
|
|
});
|
|
|
}
|
|
|
|