icn3d 3.26.3 → 3.26.5
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 +2 -2
- package/icn3d.min.js +1 -1
- package/icn3d.module.js +2 -2
- package/package.json +4 -4
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);
|
|
45391
|
+
let alignAjax = (me.bNode) ? me.getAjaxPostPromise(urltmalign, dataObj, undefined, undefined, undefined, undefined, undefined, true) : me.getAjaxPostPromise(urltmalign, dataObj);
|
|
45392
45392
|
ajaxArray.push(alignAjax);
|
|
45393
45393
|
|
|
45394
45394
|
domainidpairArray.push(domainid + "|" + ic.refpdbArray[index]);
|
|
@@ -45404,7 +45404,7 @@ class LineGraph {
|
|
|
45404
45404
|
// dataArray2 = await allPromise;
|
|
45405
45405
|
|
|
45406
45406
|
//split arrays into chunks of 100 jobs
|
|
45407
|
-
let n = (me.bNode) ?
|
|
45407
|
+
let n = (me.bNode) ? 16 : 96;
|
|
45408
45408
|
for(let i = 0, il = (ajaxArray.length - 1) / n + 1; i < il; ++i) {
|
|
45409
45409
|
let currAjaxArray = [];
|
|
45410
45410
|
if(i == il - 1) { // last one
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "icn3d",
|
|
3
|
-
"version": "3.26.
|
|
3
|
+
"version": "3.26.5",
|
|
4
4
|
"main": "./icn3d.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"author": "Jiyao Wang <wangjiy@ncbi.nlm.nih.gov>",
|
|
32
32
|
"license": "SEE LICENSE IN LICENSE",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"axios": "^
|
|
35
|
-
"jquery": "^3.
|
|
36
|
-
"jsdom": "^
|
|
34
|
+
"axios": "^1.4.0",
|
|
35
|
+
"jquery": "^3.6.4",
|
|
36
|
+
"jsdom": "^22.1.0",
|
|
37
37
|
"three": "~0.137.0"
|
|
38
38
|
}
|
|
39
39
|
}
|