Releases: choderalab/openmmtools
Releases · choderalab/openmmtools
0.16.0 - Py2 deprecated, GlobalParameterState class, SamplerState reads CVs
New features
- Add ability for
SamplerState
to read new OpenMM CustomCVForce variables from theContext
object (#362). - Added the new class
states.GlobalParameterState
designed to simplify the implementation of composable states that control global variables (#363). - Allow restraint force classes to be controlled by a parameter other than
lambda_restraints
. This will enable multi-restraints simulations (#363).
Enhancements
- Global variables of integrators are now automatically copied over the integrator returned by
ContextCache.get_context
. It is possible to specify exception throughContextCache.INCOMPATIBLE_INTEGRATOR_ATTRIBUTES
(#364).
Others
- Integrator
MCMCMove
s now attempt to recover from NaN automatically by default (withn_restart_attempts
set to 4) (#364).
Deprecated
- Python2 is officially deprecated. Support will be dropped in future versions.
- Deprecated the signature of
IComposableState._on_setattr
to fix a bug where the objects were temporarily left in an inconsistent state when an exception was raised and caught. - Deprecated
update_alchemical_charges
inAlchemicalState
in anticipation of the new implementation of the exact PME that will be based on theNonbondedForce
offsets rather thanupdateParametersInContext()
.
0.15.0 - Restraint forces
0.14.0 - Exact treatment of alchemical PME electrostatics, water cluster test system, optimizations
0.14.0 - Exact treatment of alchemical PME electrostatics, water cluster test system, optimizations
Pre-release
Pre-release
New features
- Add a
WaterCluster
testsystem (#322) - Add exact treatment of PME electrostatics in
alchemy.AbsoluteAlchemicalFactory
. (#320) - Add method in
ThermodynamicState
for the efficient computation of the reduced potential at a list of states. (#320)
Enhancements
- When a
SamplerState
is applied to manyContext
s, the units are stripped only once for optimization. (#320)
Bug fixes
- Copy thermodynamic state on compound state initialization. (#320)
0.13.4 - Barostat/External Force Bugfix, Restart Robustness
Bug fixes
- Fixed implementation bug where
CustomExternalForce
restraining atoms to absolute coordinates caused an issue when a Barostat was used (#310)
Enhancements
- MCMC Integrators now attempt to re-initialize the
Context
object on the last restart attempt when NaN's are encountered. This has internally been shown to correct some instances where normally resetting positions does not work around the NaN's. This is a slow step relative to just resetting positions, but better than simulation crashing.
0.13.3 - Critical Bugfix to SamplerState Context Manipulation
Critical Fixes
- SamplerState.apply_to_context() applies box vectors before positions are set to prevent a bug on non-Reference OpenMM Platforms which can re-order system atoms and sample the wrong distribution. (#305)
Additional Fixes
0.13.2 - SamplerState Slicing and BitWise And/Or Ops
0.13.1 - Bugfix release
OpenMMTools 0.13.0
This release includes the following features:
- Storage Interface module with automatic disk IO handling
- Option for shifted or switched Reaction Field
- LangevinSplittingDynamic MCMC move with specifiable sub step ordering
- Nose-Hoover Chain Thermostat
Bugs fixed in this release
- Many doc string cleanups
- Tests are based on released versions of OpenMM
- Tests also compare against development OpenMM, but do not fail because of it
- Fixed bug in Harmonic Oscillator tests' error calculation
- Default collision rate in Langevin Integrators now matches docs
0.12.1 - Add virtual sites support in alchemy
0.12.0 - GB support in alchemy and new forces module
New features:
- Add
AbsoluteAlchemicalFactory
support for all GB models (#250) - Added
forces
andforcefactories
modules implementingUnishiftedReactionFieldForce
andreplace_reaction_field
respectively. The latter has been moved fromAbsoluteAlchemicalFactory
(#253) - Add
restrain_atoms
to restrain molecule conformation through an harmonic restrain (#255)
Bugfixes: