Skip to content

Commit

Permalink
Update rdkit_figure_generation.py
Browse files Browse the repository at this point in the history
adjusted hydrophobic interactions legend color code
  • Loading branch information
talagayev authored Mar 25, 2024
1 parent 6372047 commit 39f6eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmmdl/openmmdl_analysis/rdkit_figure_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def create_and_merge_images(
label = data.split()[-1]
type = data.split()[-2]
if label == "hydrophobic":
(line,) = ax.plot(x, y, label=data, color=(0.8, 1, 0), linewidth=5.0)
(line,) = ax.plot(x, y, label=data, color=(1.0, 1.0, 0.0), linewidth=5.0)
elif label == "hbond":
if type == "Acceptor":
(line,) = ax.plot(
Expand Down

0 comments on commit 39f6eb9

Please sign in to comment.