Skip to content

Commit

Permalink
Merge pull request #2365 from AlexsLemonade/wvauclain/compendia-large…
Browse files Browse the repository at this point in the history
…-studies

Fix smasher failing to include all samples in large studies
  • Loading branch information
wvauclain authored Jul 1, 2020
2 parents 72f1350 + 458f9dc commit 9cb8736
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 9cb8736

Please sign in to comment.