Skip to content

Commit

Permalink
Pass work_dir to Plumed constructor as a string.
Browse files Browse the repository at this point in the history
[closes OpenBioSim/BioSimSpaceTutorials#36]
  • Loading branch information
lohedges committed Jul 7, 2023
1 parent 46de830 commit 8aee0e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/BioSimSpace/Process/_openmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ def _generate_config(self):

# Create a dummy PLUMED input file so that we can bind PLUMED
# analysis functions to this process.
self._plumed = _Plumed(self._work_dir)
self._plumed = _Plumed(str(self._work_dir))
plumed_config, auxillary_files = self._plumed.createConfig(
self._system, self._protocol, self._property_map
)
Expand Down
2 changes: 1 addition & 1 deletion python/BioSimSpace/Sandpit/Exscientia/Process/_openmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ def _generate_config(self):

# Create a dummy PLUMED input file so that we can bind PLUMED
# analysis functions to this process.
self._plumed = _Plumed(self._work_dir)
self._plumed = _Plumed(str(self._work_dir))
plumed_config, auxillary_files = self._plumed.createConfig(
self._system, self._protocol, self._property_map
)
Expand Down

0 comments on commit 8aee0e8

Please sign in to comment.