Skip to content

Commit

Permalink
: was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisSch committed Mar 11, 2020
1 parent 8bcbd91 commit f0e5c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SingleCellDataExtraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def PrepareData(mask,image,channel_names):
#Check to see if image tif(f)
if image_path.suffix == '.tiff' or image_path.suffix == '.tif':
#Check to see if the image is ome.tif(f)
if image.endswith(('.ome.tif','.ome.tiff'))
if image.endswith(('.ome.tif','.ome.tiff')):
#Read the image
image_loaded = skimage.io.imread(image,plugin='tifffile')
#print('OME TIF(F) found')
Expand Down

0 comments on commit f0e5c69

Please sign in to comment.