Browse Source

fix handling of struct_oper_id

JonStargaryen 2 years ago
parent
commit
6af5ced646
2 changed files with 12 additions and 6 deletions
  1. 5 0
      CHANGELOG.md
  2. 7 6
      src/viewer/ui/strucmotif.tsx

+ 5 - 0
CHANGELOG.md

@@ -2,6 +2,11 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [2.5.9] - 2023-01-03
+### General
+- Update dependencies
+- Fix handling of struct_oper_ids when extracting structure motifs
+
 ## [2.5.8] - 2022-10-19
 ### General
 - Bump dependencies to Mol* 3.23.0 (switch to 'auto' mode for EM density maps)

+ 7 - 6
src/viewer/ui/strucmotif.tsx

@@ -139,6 +139,13 @@ class SubmitControls extends PurePluginUIComponent<{}, { isBusy: boolean, residu
         for (let i = 0; i < Math.min(MAX_MOTIF_SIZE, loci.length); i++) {
             const l = loci[i];
             const { structure, elements } = l.loci;
+
+            // only first element and only first index will be considered (ignoring multiple residues)
+            if (!determineBackboneAtom(structure, elements[0])) {
+                alert(`No CA or C4' atom for ${StructureProperties.residue.label_seq_id(location)} | ${StructureProperties.chain.label_asym_id(location)} | ${join(StructureProperties.unit.pdbx_struct_oper_list_ids(location))}`);
+                return;
+            }
+
             pdbId.add(structure.model.entry);
             sg.add(StructureProperties.unit.spgrOp(location));
             hkl.add(StructureProperties.unit.hkl(location).join('-'));
@@ -147,12 +154,6 @@ class SubmitControls extends PurePluginUIComponent<{}, { isBusy: boolean, residu
             const struct_oper_list_ids = StructureProperties.unit.pdbx_struct_oper_list_ids(location);
             const struct_oper_id = join(struct_oper_list_ids);
 
-            // only first element and only first index will be considered (ignoring multiple residues)
-            if (!determineBackboneAtom(structure, elements[0])) {
-                alert(`No CA or C4' atom for ${StructureProperties.residue.label_seq_id(location)} | ${StructureProperties.chain.label_asym_id(location)} | ${struct_oper_id}`);
-                return;
-            }
-
             // handle pure residue-info
             const residueId = {
                 label_asym_id: StructureProperties.chain.label_asym_id(location),