Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
genomewalker committed Jun 12, 2024
1 parent 4dc43d2 commit d09e9b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bam_filter/sam_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ def process_bam(
scale=1,
num_cores=p_threads,
verbose=False,
max_entries_per_chunk=100_000,
max_entries_per_chunk=100_000_000,
)
log.info(f"::: Created {len(ref_chunks):,} chunks")
# ref_chunks = random.sample(ref_chunks, len(ref_chunks))
Expand Down Expand Up @@ -1230,7 +1230,7 @@ def filter_reference_BAM(
scale=1,
num_cores=threads,
verbose=False,
max_entries_per_chunk=1_000_000,
max_entries_per_chunk=10_000_000,
)
# num_cores = min(num_cores, len(ref_chunks))
log.info(f"::: Using {num_cores} cores to write {len(ref_chunks)} chunk(s)")
Expand Down

0 comments on commit d09e9b9

Please sign in to comment.