We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0101b49 commit af3a405Copy full SHA for af3a405
meteor/variantcalling.py
@@ -453,7 +453,7 @@ def execute(self) -> None:
453
logging.info("Run freebayes")
454
startfreebayes = perf_counter()
455
with reference_file.open("rb") as ref_fh:
456
- with bgzip.BGZipReader(ref_fh) as reader:
+ with bgzip.BGZipReader(ref_fh, num_threads=self.meteor.threads) as reader:
457
decompressed_reference = reader.read()
458
with NamedTemporaryFile(suffix=".fasta", delete=False) as temp_ref_file:
459
temp_ref_file.write(decompressed_reference)
0 commit comments