Skip to content

Commit

Permalink
Correction with kwargs at line 552 [calcChHydrogenBonds()]
Browse files Browse the repository at this point in the history
  • Loading branch information
karolamik13 committed Nov 6, 2023
1 parent eda7bdd commit 4123631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prody/proteins/interactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ def calcChHydrogenBonds(atoms, **kwargs):
seq_cutoff = kwargs.pop('seq_cutoff', 25)

if len(np.unique(atoms.getChids())) > 1:
HBS_calculations = calcHydrogenBonds(atoms, **kwargs)
HBS_calculations = calcHydrogenBonds(atoms, distA, angle, seq_cutoff)

ChainsHBs = [ i for i in HBS_calculations if str(i[2]) != str(i[5]) ]
if not ChainsHBs:
Expand Down

0 comments on commit 4123631

Please sign in to comment.