Skip to content

Commit

Permalink
chunk size (pre bigstitcher) wasn't set correctly
Browse files Browse the repository at this point in the history
Needs to be 128x128x128 or 256x256x256 instead of 1x4096x4096. The latter causes memory issues as described in #47
  • Loading branch information
akhanf authored Sep 14, 2024
1 parent e32ec07 commit a30b26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/flatfield_corr.smk
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ rule apply_basic_flatfield_corr:
allow_missing=True,
),
params:
out_chunks=config["ome_zarr"]["rechunk_size"],
out_chunks=(128,128,128)
output:
zarr=temp(
directory(
Expand Down

0 comments on commit a30b26d

Please sign in to comment.