File tree Expand file tree Collapse file tree 5 files changed +482
-364
lines changed Expand file tree Collapse file tree 5 files changed +482
-364
lines changed Original file line number Diff line number Diff line change 33# 1.5.0 (a2 prerelease)
44
55* Dependencies:
6- * Bump ` ngio ` to ` >=0.2.2 ,<0.3.0 ` .
6+ * Bump ` ngio ` to ` >=0.2.4 ,<0.3.0 ` .
77* Tasks:
88 * Refactor ` projection ` task to use the new ` ngio ` API.
99 * Refactor ` copy_ome_zarr_plate ` init task to support the upcoming flexibility.
Original file line number Diff line number Diff line change @@ -121,16 +121,11 @@ def projection(
121121 roi_table_name , check_type = "generic_roi_table"
122122 )
123123
124- roi_list = []
125124 for roi in table .rois ():
126125 roi .z = 0.0
127126 roi .z_length = 1.0
128- roi_list . append (roi )
127+ table . add (roi , overwrite = True )
129128
130- # We should have a public API to set reset the rois
131- # or have a overwrite keyword in the add method
132- table ._rois = {}
133- table .add (roi_list )
134129 table .consolidate ()
135130 logger .info (f"Table { roi_table_name } Projection done" )
136131
You can’t perform that action at this time.
0 commit comments