Skip to content

Commit

Permalink
corrected the tiles_counter line in the for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Perez Meza committed Oct 29, 2024
1 parent 169aefa commit fad9d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macsima2mc/ome_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def create_ome(tile_info,conformed_markers):
channel=schema.CHANN_array(no_of_channels,metadata)
pixels=schema.PIXELS_array(channel,plane,tiff,metadata)
image.append( schema.IMAGE_array (pixels ,tiles_counter) )
tiles_counter=+1
tiles_counter+=1

ome,ome_xml=schema.OME_metadata(image)

Expand Down

0 comments on commit fad9d8f

Please sign in to comment.