Skip to content

Commit

Permalink
Not use zlib for varying length variables. Fixes problem with newer n…
Browse files Browse the repository at this point in the history
…etcdf. (#654)
  • Loading branch information
ijpulidos committed Feb 20, 2023
1 parent 1abb4f8 commit dfc93f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmmtools/multistate/multistatereporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1810,7 +1810,7 @@ def _write_dict(self, path, data, storage_name='analysis',
dimension_name = 'scalar'
# Create variable.
nc_variable = storage_nc.createVariable(path, variable_type,
dimension_name, zlib=True)
dimension_name, zlib=False)

# Assign the value to the variable.
if fixed_dimension:
Expand Down

0 comments on commit dfc93f7

Please sign in to comment.