-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix #207 * switch from pymbar 3 to pymbar 4 (minimal requirement pymbar>=4) * remove deprecated AutoMBAR * change estimators.MBAR kwarg method from "hybr" to "robust" * docs: note pymbar 4.x for 2.0 * update tests * Update CHANGES Co-authored-by: Oliver Beckstein <orbeckst@gmail.com>
- Loading branch information
1 parent
3bbbef2
commit 9b46988
Showing
15 changed files
with
115 additions
and
263 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .bar_ import BAR | ||
from .mbar_ import MBAR, AutoMBAR | ||
from .mbar_ import MBAR | ||
from .ti_ import TI | ||
|
||
FEP_ESTIMATORS = [MBAR.__name__, AutoMBAR.__name__, BAR.__name__] | ||
FEP_ESTIMATORS = [MBAR.__name__, BAR.__name__] | ||
TI_ESTIMATORS = [TI.__name__] |
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
Oops, something went wrong.