icn3d 3.26.6 → 3.26.7

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.module.js CHANGED
@@ -45388,7 +45388,7 @@ class LineGraph {
45388
45388
  pdb_query = header + pdb_query;
45389
45389
 
45390
45390
  let dataObj = {'pdb_query': pdb_query, 'pdb_target': pdb_target, "queryid": ic.refpdbArray[index]};
45391
- let alignAjax = me.getAjaxPostPromise(urltmalign, dataObj, undefined, undefined, undefined, undefined, undefined, true) ;
45391
+ let alignAjax = me.getAjaxPostPromise(urltmalign, dataObj);
45392
45392
  ajaxArray.push(alignAjax);
45393
45393
 
45394
45394
  domainidpairArray.push(domainid + "|" + ic.refpdbArray[index]);
@@ -45405,7 +45405,8 @@ class LineGraph {
45405
45405
 
45406
45406
  //split arrays into chunks of 100 jobs
45407
45407
  let n = (me.bNode) ? 16 : 96;
45408
- for(let i = 0, il = (ajaxArray.length - 1) / n + 1; i < il; ++i) {
45408
+
45409
+ for(let i = 0, il = parseInt((ajaxArray.length - 1) / n + 1); i < il; ++i) {
45409
45410
  let currAjaxArray = [];
45410
45411
  if(i == il - 1) { // last one
45411
45412
  currAjaxArray = ajaxArray.slice(i * n, ajaxArray.length);
@@ -45419,7 +45420,6 @@ class LineGraph {
45419
45420
 
45420
45421
  dataArray2 = dataArray2.concat(currDataArray);
45421
45422
  }
45422
-
45423
45423
 
45424
45424
  let bRound1 = true;
45425
45425
  await thisClass.parseAlignData(dataArray2, domainidpairArray, bRound1);
@@ -45529,7 +45529,7 @@ class LineGraph {
45529
45529
 
45530
45530
  //if(!(bBstrand && bCstrand && bEstrand && bFstrand && bGstrand)) continue;
45531
45531
  if(!(bBstrand && bCstrand && bEstrand && bFstrand)) {
45532
- if(!me.bNode) console.log("some of the Ig strands B, C, E, F are missing...");
45532
+ if(!me.bNode) console.log("Some of the Ig strands B, C, E, F are missing in the domain " + domainid + "...");
45533
45533
  continue;
45534
45534
  }
45535
45535
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "icn3d",
3
- "version": "3.26.6",
3
+ "version": "3.26.7",
4
4
  "main": "./icn3d.js",
5
5
  "exports": {
6
6
  ".": {