From e7800cf45a443a77c6079b418edb0a2ac4d9590b Mon Sep 17 00:00:00 2001 From: Mitchell Robert Vollger Date: Wed, 5 Jun 2024 14:35:36 -0700 Subject: [PATCH] feat: starting the book --- src/pileup.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pileup.rs b/src/pileup.rs index 412f8c92..342a16ac 100644 --- a/src/pileup.rs +++ b/src/pileup.rs @@ -350,6 +350,7 @@ fn run_rgn( let tid = bam.header().tid(chrom.as_bytes()).unwrap(); let chrom_len = bam.header().target_len(tid).unwrap() as usize; + log::info!("Fetching records for {}", chrom); bam.fetch(rgn)?; let mut records = bam.records().peekable(); // skip if there are no records and keep_zeros is not set