icn3d 3.30.6 → 3.30.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.js CHANGED
@@ -66387,21 +66387,30 @@ class Dssp {
66387
66387
 
66388
66388
  if(q_start > 2540 && q_start < 2560) {
66389
66389
  bBstrand = true;
66390
- let atom = ic.firstAtomObjCls.getFirstAtomObj(ic.residues[resid]);
66391
- if(atom.ss == 'helix') bBSheet = false;
66392
66390
  }
66393
66391
  else if(q_start > 3540 && q_start < 3560) {
66394
66392
  bCstrand = true;
66395
- let atom = ic.firstAtomObjCls.getFirstAtomObj(ic.residues[resid]);
66396
- if(atom.ss == 'helix') bCSheet = false;
66397
66393
  }
66398
66394
  else if(q_start > 7540 && q_start < 7560) {
66399
66395
  bEstrand = true;
66400
- let atom = ic.firstAtomObjCls.getFirstAtomObj(ic.residues[resid]);
66401
- if(atom.ss == 'helix') bESheet = false;
66402
66396
  }
66403
66397
  else if(q_start > 8540 && q_start < 8560) {
66404
66398
  bFstrand = true;
66399
+ }
66400
+
66401
+ if(q_start == 2550) {
66402
+ let atom = ic.firstAtomObjCls.getFirstAtomObj(ic.residues[resid]);
66403
+ if(atom.ss == 'helix') bBSheet = false;
66404
+ }
66405
+ else if(q_start == 3550) {
66406
+ let atom = ic.firstAtomObjCls.getFirstAtomObj(ic.residues[resid]);
66407
+ if(atom.ss == 'helix') bCSheet = false;
66408
+ }
66409
+ else if(q_start == 7550) {
66410
+ let atom = ic.firstAtomObjCls.getFirstAtomObj(ic.residues[resid]);
66411
+ if(atom.ss == 'helix') bESheet = false;
66412
+ }
66413
+ else if(q_start == 8550) {
66405
66414
  let atom = ic.firstAtomObjCls.getFirstAtomObj(ic.residues[resid]);
66406
66415
  if(atom.ss == 'helix') bFSheet = false;
66407
66416
  }
@@ -66420,7 +66429,7 @@ class Dssp {
66420
66429
  delete ic.domainid2refpdbname[domainid];
66421
66430
  delete ic.domainid2score[domainid];
66422
66431
  }
66423
- continue;
66432
+ // continue;
66424
66433
  }
66425
66434
  // }
66426
66435
 
@@ -66454,6 +66463,7 @@ class Dssp {
66454
66463
  if(bRound1) {
66455
66464
  // ic.domainid2refpdbname[domainid] = score > 0.75 ? [refpdbname] : ['all_templates'];
66456
66465
  ic.domainid2refpdbname[domainid] = score >= this.TMThreshold ? [refpdbname] : ['all_templates'];
66466
+ // if(me.bNode) ic.domainid2refpdbname[domainid] = ['all_templates'];
66457
66467
  }
66458
66468
  else {
66459
66469
  ic.domainid2refpdbname[domainid] = [refpdbname];