Skip to content

Commit 28f622e

Browse files
committed
refactor: small change to ordering for clarity
1 parent 0bd9dec commit 28f622e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

create_downsampled/main.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,14 @@ def main():
9696
allow_non_aligned_write=allow_non_aligned_write,
9797
)
9898

99-
# Process each well into chunks
100-
iter_coords = list(get_grid_coords(num_chunks_per_dim))
101-
10299
# Find which files were already done and keep track of them
103100
uploaded_files = get_uploaded_files(output_path)
104-
105101
processed_chunks = []
106102
failed_chunks = []
107103
total_uploads = 0
104+
105+
# Process each well into chunks
106+
iter_coords = list(get_grid_coords(num_chunks_per_dim))
108107
for coord in iter_coords[:MAX_ITERS]:
109108
bounds = process(
110109
args=coord,

0 commit comments

Comments
 (0)