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.js +5 -2
- package/icn3d.min.js +1 -1
- package/icn3d.module.js +5 -2
- package/package.json +1 -1
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
|
-
|
|
109684
|
-
|
|
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
|
|