We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7105228 commit 5c603e7Copy full SHA for 5c603e7
1 file changed
examples/genomicsdb_query
@@ -583,9 +583,8 @@ def main():
583
584
# Check if there is room for row_tuples to be parallelized
585
chunk_size = int(args.chunk_size)
586
- if len(configs) < args.nproc and chunk_size > 1:
587
- if row_tuples is None:
588
- row_tuples = parse_callset_json_for_split_row_ranges(callset_file, chunk_size)
+ if len(configs) < args.nproc and chunk_size > 1 and row_tuples is None:
+ row_tuples = parse_callset_json_for_split_row_ranges(callset_file, chunk_size)
589
new_configs = []
590
for idx_row, row_tuple in enumerate(row_tuples):
591
for idx, config in enumerate(configs):
0 commit comments