Skip to content

Commit

Permalink
convert omero channels force lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnhoffer committed Apr 9, 2021
1 parent 016db20 commit f960762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/convert_omero_channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def make_channel(ch_key, ch):
print(f'Skipping channel: "{ch_key}" is not an integer')
return {}
return {
"color": ch['color'],
"label": ch['label'],
"color": ch['color'].lower(),
"min": ch['start'] / ch['max'],
"max": ch['end'] / ch['max'],
"id": ch_id,
Expand Down

0 comments on commit f960762

Please sign in to comment.