icn3d 3.47.0 → 3.47.1

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
@@ -109680,8 +109680,11 @@ class DcdParser {
109680
109680
  let chainid = chainArray[j];
109681
109681
  for(let k in ic.chains[chainid]) {
109682
109682
  let atom = ic.atoms[k];
109683
- coord.push(atom.coord);
109684
- ++nAtoms;
109683
+ // only align proteins
109684
+ if(ic.proteins.hasOwnProperty(atom.serial)) {
109685
+ coord.push(atom.coord);
109686
+ ++nAtoms;
109687
+ }
109685
109688
  }
109686
109689
  }
109687
109690
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "icn3d",
3
- "version": "3.47.0",
3
+ "version": "3.47.1",
4
4
  "main": "./icn3d.js",
5
5
  "exports": {
6
6
  ".": {