Skip to content
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'
]

from .hbond_analysis import HydrogenBondAnalysis
from .wbridge_analysis import WaterBridgeAnalysis
Loading