Skip to content

Commit

Permalink
Cavi-Finder - fixes for Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
karolamik13 committed Dec 16, 2024
1 parent 1ce0c7e commit f78f7aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion prody/proteins/interactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5255,7 +5255,11 @@ def calcChannels(atoms, output_path=None, separate=False, r1=3, r2=1.25, min_dep

while True:
s_prv.set_state(*s_tmp.get_state())
s_tmp.set_state(*calculator.delete_simplices3d(coords, *s_tmp.get_state(), vdw_radii, r1, True))
#s_tmp.set_state(*calculator.delete_simplices3d(coords, *s_tmp.get_state(), vdw_radii, r1, True))
state = s_tmp.get_state()
result = calculator.delete_simplices3d(coords, *state, vdw_radii, r1, True)
s_tmp.set_state(*result)

if s_tmp == s_prv:
break

Expand Down

0 comments on commit f78f7aa

Please sign in to comment.