Skip to content

Commit

Permalink
gsoc-1
Browse files Browse the repository at this point in the history
  • Loading branch information
lunamorrow committed Mar 27, 2024
1 parent 6d8b947 commit 4daea21
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ The rules for this file:


-------------------------------------------------------------------------------
03/27/23 lunamorrow

* 2.8.1

Fixes

Enhancements
* modernise `HydrogenBondAnalysis` to use `AtomGroups` as objects internally
instead of selection strings

Changes
* `guess_acceptors`, `guess_hydrogens` and `guess_donators` no longer return
selection strings (return `AtomGroups`instead)
* `_prepare` and `_single_frame` no longer pass selection strings to other
class methods (pass `AtomGroups` instead)

Deprecations
* Selection string return of `guess_acceptors`, `guess_hydrogens` and
`guess_donators` has been deprecated in favour of return of `AtomGroups`
and will removed in removed in version 3.0.0 (PR #4533)

??/??/?? IAlibay, HeetVekariya, marinegor, lilyminium, RMeli,
ljwoods2, aditya292002, pstaerk, PicoCentauri, BFedder,
tyler.je.reddy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ def _prepare(self):
self.results.hbonds = [[], [], [], [], [], []]

# Set unpaired acceptor and hydrogen AtomGroups
self.acceptors_ag = self.guess_acceptors() #do i need this?
self.acceptors_ag = self.guess_acceptors() #NOTE: do I need this?
self.hydrogens_ag = self.guess_hydrogens()
self.donors_ag = self.guess_donors()

Expand Down

0 comments on commit 4daea21

Please sign in to comment.