icn3d 3.31.7 → 3.31.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 +30 -14
- package/icn3d.min.js +3 -3
- package/icn3d.module.js +30 -14
- package/package.json +1 -1
package/icn3d.js
CHANGED
|
@@ -40933,6 +40933,7 @@ class AnnoIg {
|
|
|
40933
40933
|
ic.chain2igArray[chnid] = [];
|
|
40934
40934
|
this.setChain2igArray(chnid, giSeq, bCustom);
|
|
40935
40935
|
|
|
40936
|
+
|
|
40936
40937
|
// remove Igs without BCEF strands one more time
|
|
40937
40938
|
let igArray = ic.chain2igArray[chnid];
|
|
40938
40939
|
|
|
@@ -41005,6 +41006,7 @@ class AnnoIg {
|
|
|
41005
41006
|
}
|
|
41006
41007
|
}
|
|
41007
41008
|
|
|
41009
|
+
|
|
41008
41010
|
// reset ic.chain2igArray
|
|
41009
41011
|
ic.chain2igArray[chnid] = [];
|
|
41010
41012
|
this.setChain2igArray(chnid, giSeq, bCustom);
|
|
@@ -44422,7 +44424,8 @@ class AddTrack {
|
|
|
44422
44424
|
}
|
|
44423
44425
|
|
|
44424
44426
|
getExonHtml(exonIndex, colorGradient, from, to, genomeRange, chainid, simpTitle) { let ic = this.icn3d; ic.icn3dui;
|
|
44425
|
-
return '<div style="display:inline-block; color:white!important; width:' + Math.round(ic.seqAnnWidth *(to - from + 1) /(ic.maxAnnoLength + ic.nTotalGap)) + 'px;" class="icn3d-seqTitle icn3d-link icn3d-blue" domain="' + (exonIndex + 1) + '" from="' + from + '" to="' + to + '" setname="' + simpTitle + ', Exon ' + (exonIndex + 1) + '" title="Exon ' + (exonIndex + 1) + ': ' + genomeRange + ' genomic interval" anno="sequence" chain="' + chainid + '"><div style="height: 12px; border: 1px solid #000; background: linear-gradient(to right, ' + colorGradient + ');"></div></div>';
|
|
44427
|
+
// return '<div style="display:inline-block; color:white!important; width:' + Math.round(ic.seqAnnWidth *(to - from + 1) /(ic.maxAnnoLength + ic.nTotalGap)) + 'px;" class="icn3d-seqTitle icn3d-link icn3d-blue" domain="' + (exonIndex + 1) + '" from="' + from + '" to="' + to + '" setname="' + simpTitle + ', Exon ' + (exonIndex + 1) + '" title="Exon ' + (exonIndex + 1) + ': ' + genomeRange + ' genomic interval" anno="sequence" chain="' + chainid + '"><div style="height: 12px; border: 1px solid #000; background: linear-gradient(to right, ' + colorGradient + ');"></div></div>';
|
|
44428
|
+
return '<div style="display:inline-block; color:white!important; width:' + Math.round(ic.seqAnnWidth *(to - from + 1) /(ic.maxAnnoLength + ic.nTotalGap)) + 'px;" class="icn3d-seqTitle icn3d-link icn3d-blue" domain="' + (exonIndex + 1) + '" from="' + from + '" to="' + to + '" setname="' + simpTitle + ', #' + (exonIndex + 1) + '" title="Exon: ' + genomeRange + ' genomic interval" anno="sequence" chain="' + chainid + '"><div style="height: 12px; border: 1px solid #000; background: linear-gradient(to right, ' + colorGradient + ');"></div></div>';
|
|
44426
44429
|
}
|
|
44427
44430
|
|
|
44428
44431
|
getExonColor(start, end, pos) { let ic = this.icn3d; ic.icn3dui;
|
|
@@ -51629,7 +51632,7 @@ class ContactMap {
|
|
|
51629
51632
|
let color2 = rHex + gHex + bHex;
|
|
51630
51633
|
|
|
51631
51634
|
if(bLink) linkStr += ', ';
|
|
51632
|
-
linkStr += '{"source": "' + idStr + postA + '", "target": "' + idStr2 + postB + '", "v": 11, "c": "' + color2 + '"}\n';
|
|
51635
|
+
linkStr += '{"source": "' + idStr + postA + '", "target": "' + idStr2 + postB + '", "v": 11, "c": "' + color2 + '", "pae": ' + parseInt(distMatrix[i][j]) + '}\n';
|
|
51633
51636
|
bLink = true;
|
|
51634
51637
|
}
|
|
51635
51638
|
}
|
|
@@ -55248,10 +55251,12 @@ class BcifParser {
|
|
|
55248
55251
|
let conf_type_idArray = struct_conf.getColumn("conf_type_id");
|
|
55249
55252
|
|
|
55250
55253
|
let chain1Array = struct_conf.getColumn("beg_auth_asym_id");
|
|
55251
|
-
let resi1Array = struct_conf.getColumn("beg_label_seq_id");
|
|
55254
|
+
// let resi1Array = struct_conf.getColumn("beg_label_seq_id");
|
|
55255
|
+
let resi1Array = struct_conf.getColumn("beg_auth_seq_id");
|
|
55252
55256
|
|
|
55253
55257
|
let chain2Array = struct_conf.getColumn("end_auth_asym_id");
|
|
55254
|
-
let resi2Array = struct_conf.getColumn("end_label_seq_id");
|
|
55258
|
+
// let resi2Array = struct_conf.getColumn("end_label_seq_id");
|
|
55259
|
+
let resi2Array = struct_conf.getColumn("end_auth_seq_id");
|
|
55255
55260
|
|
|
55256
55261
|
// Iterate through every row in the struct_conf category table, where each row delineates an interatomic connection
|
|
55257
55262
|
let confSize = struct_conf.rowCount;
|
|
@@ -55296,10 +55301,12 @@ class BcifParser {
|
|
|
55296
55301
|
let struct_sheet_range = block.getCategory("_struct_sheet_range");
|
|
55297
55302
|
|
|
55298
55303
|
let chain1Array = struct_sheet_range.getColumn("beg_auth_asym_id");
|
|
55299
|
-
let resi1Array = struct_sheet_range.getColumn("beg_label_seq_id");
|
|
55304
|
+
// let resi1Array = struct_sheet_range.getColumn("beg_label_seq_id");
|
|
55305
|
+
let resi1Array = struct_sheet_range.getColumn("beg_auth_seq_id");
|
|
55300
55306
|
|
|
55301
55307
|
let chain2Array = struct_sheet_range.getColumn("end_auth_asym_id");
|
|
55302
|
-
let resi2Array = struct_sheet_range.getColumn("end_label_seq_id");
|
|
55308
|
+
// let resi2Array = struct_sheet_range.getColumn("end_label_seq_id");
|
|
55309
|
+
let resi2Array = struct_sheet_range.getColumn("end_auth_seq_id");
|
|
55303
55310
|
|
|
55304
55311
|
// Iterate through every row in the struct_sheet_range category table, where each row delineates an interatomic connection
|
|
55305
55312
|
let sheetSize = struct_sheet_range.rowCount;
|
|
@@ -58804,9 +58811,13 @@ class ParserUtils {
|
|
|
58804
58811
|
|
|
58805
58812
|
for(let i = 0, il = ic.realignResid[chainid_t].length; i < il && i < ic.realignResid[chainid_q].length; ++i) {
|
|
58806
58813
|
let resid_t = ic.realignResid[chainid_t][i].resid;
|
|
58814
|
+
if(!resid_t) continue;
|
|
58815
|
+
|
|
58807
58816
|
let pos_t = resid_t.lastIndexOf('_');
|
|
58808
58817
|
let resi_t = parseInt(resid_t.substr(pos_t + 1));
|
|
58809
58818
|
let resid_q = ic.realignResid[chainid_q][i].resid;
|
|
58819
|
+
if(!resid_q) continue;
|
|
58820
|
+
|
|
58810
58821
|
let pos_q = resid_q.lastIndexOf('_');
|
|
58811
58822
|
let resi_q = parseInt(resid_q.substr(pos_q + 1));
|
|
58812
58823
|
|
|
@@ -62819,10 +62830,12 @@ class LoadCIF {
|
|
|
62819
62830
|
let conf_type_idArray = struct_conf.getColumn("conf_type_id");
|
|
62820
62831
|
|
|
62821
62832
|
let chain1Array = struct_conf.getColumn("beg_auth_asym_id");
|
|
62822
|
-
let resi1Array = struct_conf.getColumn("beg_label_seq_id");
|
|
62833
|
+
// let resi1Array = struct_conf.getColumn("beg_label_seq_id");
|
|
62834
|
+
let resi1Array = struct_conf.getColumn("beg_auth_seq_id");
|
|
62823
62835
|
|
|
62824
62836
|
struct_conf.getColumn("end_auth_asym_id");
|
|
62825
|
-
let resi2Array = struct_conf.getColumn("end_label_seq_id");
|
|
62837
|
+
// let resi2Array = struct_conf.getColumn("end_label_seq_id");
|
|
62838
|
+
let resi2Array = struct_conf.getColumn("end_auth_seq_id");
|
|
62826
62839
|
|
|
62827
62840
|
// Iterate through every row in the struct_conf category table, where each row delineates an interatomic connection
|
|
62828
62841
|
let confSize = struct_conf.rowCount;
|
|
@@ -62861,10 +62874,12 @@ class LoadCIF {
|
|
|
62861
62874
|
let struct_sheet_range = block.getCategory("_struct_sheet_range");
|
|
62862
62875
|
|
|
62863
62876
|
let chain1Array = struct_sheet_range.getColumn("beg_auth_asym_id");
|
|
62864
|
-
let resi1Array = struct_sheet_range.getColumn("beg_label_seq_id");
|
|
62877
|
+
// let resi1Array = struct_sheet_range.getColumn("beg_label_seq_id");
|
|
62878
|
+
let resi1Array = struct_sheet_range.getColumn("beg_auth_seq_id");
|
|
62865
62879
|
|
|
62866
62880
|
struct_sheet_range.getColumn("end_auth_asym_id");
|
|
62867
|
-
let resi2Array = struct_sheet_range.getColumn("end_label_seq_id");
|
|
62881
|
+
// let resi2Array = struct_sheet_range.getColumn("end_label_seq_id");
|
|
62882
|
+
let resi2Array = struct_sheet_range.getColumn("end_auth_seq_id");
|
|
62868
62883
|
|
|
62869
62884
|
// Iterate through every row in the struct_sheet_range category table, where each row delineates an interatomic connection
|
|
62870
62885
|
let sheetSize = struct_sheet_range.rowCount;
|
|
@@ -62872,7 +62887,7 @@ class LoadCIF {
|
|
|
62872
62887
|
let startChain = chain1Array.getString(i);
|
|
62873
62888
|
let startResi = parseInt(resi1Array.getString(i));
|
|
62874
62889
|
let endResi = parseInt(resi2Array.getString(i));
|
|
62875
|
-
|
|
62890
|
+
|
|
62876
62891
|
for(let j = startResi; j <= endResi; ++j) {
|
|
62877
62892
|
let resid = structure + "_" + startChain + "_" + j;
|
|
62878
62893
|
sheetArray.push(resid);
|
|
@@ -70903,12 +70918,13 @@ class Dssp {
|
|
|
70903
70918
|
// if(!(bBstrand && bCstrand && bEstrand && bFstrand)) {
|
|
70904
70919
|
if(!me.bNode && !(bBstrand && bCstrand && bEstrand && bFstrand)) console.log("Some of the Ig strands B, C, E, F are missing in the domain " + domainid + "...");
|
|
70905
70920
|
if(!me.bNode && !(bBSheet && bCSheet && bESheet && bFSheet)) console.log("Some of the Ig strands B, C, E, F are not beta sheets...");
|
|
70906
|
-
|
|
70921
|
+
|
|
70907
70922
|
if(ic.domainid2refpdbname[domainid][0] == refpdbname) {
|
|
70908
70923
|
delete ic.domainid2refpdbname[domainid];
|
|
70909
70924
|
delete ic.domainid2score[domainid];
|
|
70910
70925
|
}
|
|
70911
|
-
continue;
|
|
70926
|
+
continue;
|
|
70927
|
+
}
|
|
70912
70928
|
// }
|
|
70913
70929
|
|
|
70914
70930
|
}
|
|
@@ -80309,7 +80325,7 @@ class iCn3DUI {
|
|
|
80309
80325
|
//even when multiple iCn3D viewers are shown together.
|
|
80310
80326
|
this.pre = this.cfg.divid + "_";
|
|
80311
80327
|
|
|
80312
|
-
this.REVISION = '3.31.
|
|
80328
|
+
this.REVISION = '3.31.2';
|
|
80313
80329
|
|
|
80314
80330
|
// In nodejs, iCn3D defines "window = {navigator: {}}"
|
|
80315
80331
|
this.bNode = (Object.keys(window).length < 2) ? true : false;
|