Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecate hydrogen bond analysis in water bridge analysis #2913

Merged
merged 30 commits into from
Feb 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ Changes
`__call__` (Issue #2860, PR #2859)
* deprecated ``analysis.helanal`` module has been removed in favour of
``analysis.helix_analysis`` (PR #2929)
* Move water bridge analysis from hbonds to hydrogenbonds (Issue #2739 PR #2913)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically new changes go to the top of the list, but I'm willing to let that go.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I appreciate your attention to detail.

I merged the whole thing nevertheless, as this has been sitting for way too long.


Deprecations

Expand Down
1 change: 0 additions & 1 deletion package/MDAnalysis/analysis/hbonds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@

from .hbond_analysis import HydrogenBondAnalysis
from .hbond_autocorrel import HydrogenBondAutoCorrel, find_hydrogen_donors
from .wbridge_analysis import WaterBridgeAnalysis
2 changes: 2 additions & 0 deletions package/MDAnalysis/analysis/hydrogenbonds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

__all__ = [
'HydrogenBondAnalysis'
'WaterBridgeAnalysis'
]
xiki-tempula marked this conversation as resolved.
Show resolved Hide resolved

from .hbond_analysis import HydrogenBondAnalysis
from .wbridge_analysis import WaterBridgeAnalysis
Loading