Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix smasher failing to include all samples in large studies #2365

Merged
merged 3 commits into from
Jul 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion workers/data_refinery_workers/processors/smashing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ def sync_quant_files(output_path, samples: List[Sample]):
# for all of them, so we do it in groups of 100, and then download all of the computed_files
# in parallel
for sample_page in (
samples[i * page_size : i + page_size] for i in range(0, len(samples), page_size)
samples[start : start + page_size] for start in range(0, len(samples), page_size)
):
sample_and_computed_files = []
for sample in sample_page:
Expand Down