Closed nigel-palmer-cresset closed 5 months ago
Thanks for reporting. This is actually because prepareFEP
is passing keyword arguments, e.g. the property_map
as positional arguments. There is no need to pass match_water
.
I'll update the script tomorrow.
Sorry, couldn't see your code snippet on my phone. That's the correct solution, i.e. passing the property map as a kwarg.
prepareFEP.py has the following code
This fails due to biosimspace/python/BioSimSpace/IO/_io.py::saveMolecules requiring an
match_water
parameter.Changing it to the following fixes the problem.
Thanks