From c4095b4bb72978a57076225445bc7aeabc63283f Mon Sep 17 00:00:00 2001 From: Mitchell Robert Vollger Date: Tue, 20 Aug 2024 19:10:58 -0700 Subject: [PATCH] test: try using different thread combos with tch --- src/utils/bio_io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/bio_io.rs b/src/utils/bio_io.rs index fa8b65df..389840e6 100644 --- a/src/utils/bio_io.rs +++ b/src/utils/bio_io.rs @@ -199,7 +199,7 @@ impl<'a> BamChunk<'a> { pub fn new(bam: bam::Records<'a, bam::Reader>, chunk_size: Option) -> Self { let chunk_size = std::cmp::min( chunk_size.unwrap_or_else(|| current_num_threads() * 100), - 2_000, + 1_000, ); let bar = no_length_progress_bar(); Self {