We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51252b3 commit 9197dc0Copy full SHA for 9197dc0
sopa/io/reader/cosmx.py
@@ -510,7 +510,7 @@ def _get_morphology_coords(images_dir: Path) -> list[str]:
510
channels = re.findall(r'"ChannelId": "(.*?)",', description)
511
channel_order = list(re.findall(r'"ChannelOrder": "(.*?)",', description)[0])
512
513
- return [substrings[channels.index(x)] if x in channels else x for x in channel_order]
+ return [substrings[channels.index(x)].replace("/", ".") if x in channels else x for x in channel_order]
514
515
516
def _get_protein_name(image_path: Path) -> str:
0 commit comments