Skip to content

Commit 4f45553

Browse files
committed
Fixed an instance of row2im returns not being updated
1 parent 3bc86ce commit 4f45553

File tree

4 files changed

+1
-1
lines changed

4 files changed

+1
-1
lines changed

fov_processing_pipeline/._.DS_Store

4 KB
Binary file not shown.
4 KB
Binary file not shown.
Binary file not shown.

fov_processing_pipeline/wrappers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def process_fov_row(fov_row, stats_path, proj_path, overwrite=False):
182182
if not os.path.exists(stats_dir):
183183
os.makedirs(stats_dir)
184184

185-
im = row2im(fov_row)
185+
im, ch = row2im(fov_row)
186186
stats = im2stats(im)
187187

188188
with open(stats_path, "wb") as f:

0 commit comments

Comments
 (0)