Skip to content

Commit

Permalink
Fix checkpoint name (#594)
Browse files Browse the repository at this point in the history
* Fix checkpoint name

* also fix for AFEs
  • Loading branch information
IAlibay authored Oct 31, 2023
1 parent 2b762c6 commit 6bf481b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openfe/protocols/openmm_afe/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def _get_reporter(
)

nc = self.shared_basepath / simulation_settings.output_filename
chk = self.shared_basepath / simulation_settings.checkpoint_storage
chk = simulation_settings.checkpoint_storage

reporter = multistate.MultiStateReporter(
storage=nc,
Expand Down
2 changes: 1 addition & 1 deletion openfe/protocols/openmm_rfe/equil_rfe_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def run(self, *, dry=False, verbose=True,

# a. Create the multistate reporter
nc = shared_basepath / sim_settings.output_filename
chk = shared_basepath / sim_settings.checkpoint_storage
chk = sim_settings.checkpoint_storage
reporter = multistate.MultiStateReporter(
storage=nc,
analysis_particle_indices=selection_indices,
Expand Down

0 comments on commit 6bf481b

Please sign in to comment.