Skip to content

Commit

Permalink
Fix(display_images): fix displaying colors (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoHakem authored Nov 25, 2024
1 parent 7e9f44b commit cc4a7bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/4_display_perturbation_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ def display_site(
counter = 0

channel_rgb = {
"DNA": "#FF0000", # Blue
"ER": "#65fe08", # Green
"Mito": "#FFFF00", # Red
"AGP": "#FFFF00", # Yellow
"RNA": "#FFA500", # Orange
"AGP": "#FF7F00", # Orange
"DNA": "#0000FF", # Blue
"ER": "#00FF00", # Green
"Mito": "#FF0000", # Red
"RNA": "#FFFF00", # Yellow
}

for ax, (channel, rgb) in zip(axes, channel_rgb.items()):
Expand Down

0 comments on commit cc4a7bd

Please sign in to comment.