-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create alchemy subpackage * Fix docs dependencies * Fix alchemy tests imports
- Loading branch information
Showing
5 changed files
with
32 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,4 @@ dependencies: | |
# docs | ||
- numpydoc | ||
- sphinxcontrib-bibtex | ||
- sphinx-rtd-theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
""" | ||
Alchemical factory for free energy calculations package that operates directly on OpenMM | ||
System objects. | ||
DESCRIPTION | ||
This package contains enumerative factories for generating alchemically-modified System objects | ||
usable for the calculation of free energy differences of hydration or ligand binding. | ||
Provided classes include: | ||
- :class:`openmmtools.alchemy.alchemy.AlchemicalFunction` | ||
- :class:`openmmtools.alchemy.alchemy.AlchemicalState` | ||
- :class:`openmmtools.alchemy.alchemy.AlchemicalRegion` | ||
- :class:`openmmtools.alchemy.alchemy.AbsoluteAlchemicalFactory` | ||
- :class:`openmmtools.alchemy.alchemy.AlchemicalStateError` | ||
""" | ||
|
||
# Automatically importing everything from the lower level alchemy module to avoid API breakage | ||
from .alchemy import AlchemicalState, AlchemicalFunction, AlchemicalStateError, AlchemicalRegion, \ | ||
AbsoluteAlchemicalFactory |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters