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 +5 -5
- package/icn3d.min.js +2 -2
- package/icn3d.module.js +5 -5
- package/package.json +1 -1
package/icn3d.module.js
CHANGED
|
@@ -39527,12 +39527,12 @@ class Domain3d {
|
|
|
39527
39527
|
|
|
39528
39528
|
if (nsse <= 3)
|
|
39529
39529
|
// too small, can't split or trim
|
|
39530
|
-
return {subdomains: subdomains, substruct: substruct};
|
|
39530
|
+
return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi};
|
|
39531
39531
|
|
|
39532
39532
|
if (nsse > this.MAX_SSE) {
|
|
39533
39533
|
// we have a problem...
|
|
39534
39534
|
|
|
39535
|
-
return {subdomains: subdomains, substruct: substruct};
|
|
39535
|
+
return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi};
|
|
39536
39536
|
}
|
|
39537
39537
|
|
|
39538
39538
|
let seqLen = residueArray.length; // + resiOffset;
|
|
@@ -39804,7 +39804,7 @@ class Domain3d {
|
|
|
39804
39804
|
let k = prts[i] - 1;
|
|
39805
39805
|
|
|
39806
39806
|
if ((k < 0) || (k >= substruct.length)) {
|
|
39807
|
-
return {subdomains: subdomains, substruct: substruct};
|
|
39807
|
+
return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi};
|
|
39808
39808
|
}
|
|
39809
39809
|
|
|
39810
39810
|
//SSE_Rec sserec = substruct[k];
|
|
@@ -39921,7 +39921,7 @@ class Domain3d {
|
|
|
39921
39921
|
}
|
|
39922
39922
|
}
|
|
39923
39923
|
|
|
39924
|
-
return {subdomains: subdomains, substruct: substruct, pos2resi:pos2resi };
|
|
39924
|
+
return {subdomains: subdomains, substruct: substruct, pos2resi: pos2resi };
|
|
39925
39925
|
} // end c2b_NewSplitChain
|
|
39926
39926
|
|
|
39927
39927
|
getDomainJsonForAlign(atoms) { let ic = this.icn3d, me = ic.icn3dui;
|
|
@@ -71358,7 +71358,7 @@ class iCn3DUI {
|
|
|
71358
71358
|
//even when multiple iCn3D viewers are shown together.
|
|
71359
71359
|
this.pre = this.cfg.divid + "_";
|
|
71360
71360
|
|
|
71361
|
-
this.REVISION = '3.25.
|
|
71361
|
+
this.REVISION = '3.25.1';
|
|
71362
71362
|
|
|
71363
71363
|
// In nodejs, iCn3D defines "window = {navigator: {}}"
|
|
71364
71364
|
this.bNode = (Object.keys(window).length < 2) ? true : false;
|