Skip to content
Snippets Groups Projects
Commit bcc90f17 authored by cramakri's avatar cramakri
Browse files

LMS-2472 Set timepoints in microscopy images

SVN: 22741
parent b0d10a62
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,7 @@ class ImageDataSetFlexible(SimpleImageDataConfig): ...@@ -32,6 +32,7 @@ class ImageDataSetFlexible(SimpleImageDataConfig):
image_tokens.well = None image_tokens.well = None
image_tokens.tileNumber = 1 image_tokens.tileNumber = 1
image_tokens.channelCode = token_dict["c"] image_tokens.channelCode = token_dict["c"]
image_tokens.timepoint = float(token_dict["t"])
return image_tokens return image_tokens
""" """
...@@ -60,9 +61,6 @@ class ImageDataSetFlexible(SimpleImageDataConfig): ...@@ -60,9 +61,6 @@ class ImageDataSetFlexible(SimpleImageDataConfig):
""" """
def getTileCoordinates(self, tileNumber, tileGeometry): def getTileCoordinates(self, tileNumber, tileGeometry):
return Location(1, 1) return Location(1, 1)
# def isMicroscopyData(self):
# return True
if incoming.isDirectory(): if incoming.isDirectory():
imageDataset = ImageDataSetFlexible() imageDataset = ImageDataSetFlexible()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment