Skip to content

Commit

Permalink
Merge pull request #152 from kalinni/bug/waterbridge-detection
Browse files Browse the repository at this point in the history
Fixes mistakes in waterbridge detection and filtering
  • Loading branch information
fkaiserbio committed Mar 26, 2024
2 parents bf04ce7 + 2ae4997 commit 8b37a0f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions plip/structure/detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def water_bridges(bs_hba, lig_hba, bs_hbd, lig_hbd, water):
if not wl.oxy == wd.oxy:
continue
# Same water molecule and angle within omega
w_angle = vecangle(vector(acc.a.coords, wl.oxy.coords), vector(wl.oxy.coords, don.h.coords))
w_angle = vecangle(vector(wl.oxy.coords, acc.a.coords), vector(wl.oxy.coords, don.h.coords))
if not config.WATER_BRIDGE_OMEGA_MIN < w_angle < config.WATER_BRIDGE_OMEGA_MAX:
continue
resnr, reschain, restype = whichresnumber(don.d), whichchain(don.d), whichrestype(don.d)
Expand All @@ -309,7 +309,7 @@ def water_bridges(bs_hba, lig_hba, bs_hbd, lig_hbd, water):
if not wl.oxy == wd.oxy:
continue
# Same water molecule and angle within omega
w_angle = vecangle(vector(acc.a.coords, wl.oxy.coords), vector(wl.oxy.coords, don.h.coords))
w_angle = vecangle(vector(wl.oxy.coords, acc.a.coords), vector(wl.oxy.coords, don.h.coords))
if not config.WATER_BRIDGE_OMEGA_MIN < w_angle < config.WATER_BRIDGE_OMEGA_MAX:
continue
resnr, reschain, restype = whichresnumber(acc.a), whichchain(acc.a), whichrestype(acc.a)
Expand Down
20 changes: 13 additions & 7 deletions plip/structure/preparation.py
Original file line number Diff line number Diff line change
Expand Up @@ -880,18 +880,24 @@ def refine_pication(all_picat, stacks):
def refine_water_bridges(wbridges, hbonds_ldon, hbonds_pdon):
"""A donor atom already forming a hydrogen bond is not allowed to form a water bridge. Each water molecule
can only be donor for two water bridges, selecting the constellation with the omega angle closest to 110 deg."""
donor_atoms_hbonds = [hb.d.idx for hb in hbonds_ldon + hbonds_pdon]
donor_atoms_hbonds = [hb.d_orig_idx for hb in hbonds_ldon + hbonds_pdon]
wb_dict = {}
wb_dict2 = {}
omega = 110.0

# Just one hydrogen bond per donor atom
for wbridge in [wb for wb in wbridges if wb.d.idx not in donor_atoms_hbonds]:
if (wbridge.water.idx, wbridge.a.idx) not in wb_dict:
wb_dict[(wbridge.water.idx, wbridge.a.idx)] = wbridge
# (TODO: looks wrong, what about donor atoms with multiple H? Does PLIP cover that somehow?
# and only one donor per water-acceptor combination
# (each water-acceptor combo only kept once after this loop,
# the one with angle at water closest to omega)
for wbridge in [wb for wb in wbridges if wb.d_orig_idx not in donor_atoms_hbonds]:
if (wbridge.water_orig_idx, wbridge.a_orig_idx) not in wb_dict:
wb_dict[(wbridge.water_orig_idx, wbridge.a_orig_idx)] = wbridge
else:
if abs(omega - wb_dict[(wbridge.water.idx, wbridge.a.idx)].w_angle) < abs(omega - wbridge.w_angle):
wb_dict[(wbridge.water.idx, wbridge.a.idx)] = wbridge
if abs(omega - wb_dict[(wbridge.water_orig_idx, wbridge.a_orig_idx)].w_angle) > abs(omega - wbridge.w_angle):
wb_dict[(wbridge.water_orig_idx, wbridge.a_orig_idx)] = wbridge
# Just two hydrogen bonds per water molecule
# only the two water-acceptor combos with angle closest to omega are kept
for wb_tuple in wb_dict:
water, acceptor = wb_tuple
if water not in wb_dict2:
Expand All @@ -900,7 +906,7 @@ def refine_water_bridges(wbridges, hbonds_ldon, hbonds_pdon):
wb_dict2[water].append((abs(omega - wb_dict[wb_tuple].w_angle), wb_dict[wb_tuple]))
wb_dict2[water] = sorted(wb_dict2[water], key=lambda x: x[0])
else:
if wb_dict2[water][1][0] < abs(omega - wb_dict[wb_tuple].w_angle):
if wb_dict2[water][1][0] > abs(omega - wb_dict[wb_tuple].w_angle):
wb_dict2[water] = [wb_dict2[water][0], (wb_dict[wb_tuple].w_angle, wb_dict[wb_tuple])]

filtered_wb = []
Expand Down

0 comments on commit 8b37a0f

Please sign in to comment.