You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I went through the file and all of the pdb ATOM records appear to be fine. Or at least, the position coordinates are all floating point values afaict, no integers.
Would you mind sharing the traceback in a comment here, if you can easily produce it again?
File "/home/jan/VirtualEnvs/bentopy/lib/python3.10/site-packages/bentopy/pack/segment.py", line 175, in voxelize
voxels[int(x), int(y), int(z)] = 1
IndexError: index 7 is out of bounds for axis 0 with size 7
I now realise that you center the segment coordinates before voxelisation. Afte doing this, on of the bead coordinates becomes:
[7.0, 1.611799955368042, 2.050399899482727]
The voxel mask for this segment is a Numpy array of 7yz, so 7 is out of bounds for this specific segment.
Voxelization fails for structures that contain integer value position coordinates. (outlier bug)
You can download the pdb file reproducing the bug here:
https://drive.google.com/file/d/1BsVeHqA6jDyDZC51Ft5jONQdI7FBCG2I/view?usp=sharing
The text was updated successfully, but these errors were encountered: