Skip to content

Commit

Permalink
temp: remove rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
padix-key committed Nov 1, 2024
1 parent 0bc3e48 commit c35a972
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions setup_ccd.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,6 @@ def _concatenate_blocks_into_category(pdbx_file, category_name):
data = np.concatenate(data_chunks[col_name])
mask = np.concatenate(mask_chunks[col_name])
data = _into_fitting_type(data, mask)
if "model_Cartn" in col_name:
# Disk space optimization for coordinates: only use 2 decimal places
data = np.round(data, 2)
if np.all(mask == MaskValue.PRESENT):
mask = None
bcif_columns[col_name] = BinaryCIFColumn(data, mask)
Expand Down

0 comments on commit c35a972

Please sign in to comment.