We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bd9dec commit 28f622eCopy full SHA for 28f622e
create_downsampled/main.py
@@ -96,15 +96,14 @@ def main():
96
allow_non_aligned_write=allow_non_aligned_write,
97
)
98
99
- # Process each well into chunks
100
- iter_coords = list(get_grid_coords(num_chunks_per_dim))
101
-
102
# Find which files were already done and keep track of them
103
uploaded_files = get_uploaded_files(output_path)
104
105
processed_chunks = []
106
failed_chunks = []
107
total_uploads = 0
+
+ # Process each well into chunks
+ iter_coords = list(get_grid_coords(num_chunks_per_dim))
108
for coord in iter_coords[:MAX_ITERS]:
109
bounds = process(
110
args=coord,
0 commit comments