icn3d 3.25.7 → 3.25.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/icn3d.js CHANGED
@@ -38626,12 +38626,12 @@ class Domain3d {
38626
38626
 
38627
38627
  if (nsse <= 3)
38628
38628
  // too small, can't split or trim
38629
- return {subdomains: subdomains, substruct: substruct};
38629
+ return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi};
38630
38630
 
38631
38631
  if (nsse > this.MAX_SSE) {
38632
38632
  // we have a problem...
38633
38633
 
38634
- return {subdomains: subdomains, substruct: substruct};
38634
+ return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi};
38635
38635
  }
38636
38636
 
38637
38637
  let seqLen = residueArray.length; // + resiOffset;
@@ -38903,7 +38903,7 @@ class Domain3d {
38903
38903
  let k = prts[i] - 1;
38904
38904
 
38905
38905
  if ((k < 0) || (k >= substruct.length)) {
38906
- return {subdomains: subdomains, substruct: substruct};
38906
+ return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi};
38907
38907
  }
38908
38908
 
38909
38909
  //SSE_Rec sserec = substruct[k];
@@ -39020,7 +39020,7 @@ class Domain3d {
39020
39020
  }
39021
39021
  }
39022
39022
 
39023
- return {subdomains: subdomains, substruct: substruct, pos2resi:pos2resi };
39023
+ return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi };
39024
39024
  } // end c2b_NewSplitChain
39025
39025
 
39026
39026
  getDomainJsonForAlign(atoms) { let ic = this.icn3d, me = ic.icn3dui;
@@ -70457,7 +70457,7 @@ class iCn3DUI {
70457
70457
  //even when multiple iCn3D viewers are shown together.
70458
70458
  this.pre = this.cfg.divid + "_";
70459
70459
 
70460
- this.REVISION = '3.25.0';
70460
+ this.REVISION = '3.25.1';
70461
70461
 
70462
70462
  // In nodejs, iCn3D defines "window = {navigator: {}}"
70463
70463
  this.bNode = (Object.keys(window).length < 2) ? true : false;