Skip to content

Commit

Permalink
reduce the chunksize in rearrange to a more reasonable 2e7
Browse files Browse the repository at this point in the history
  • Loading branch information
golobor committed Aug 9, 2024
1 parent 2a4ee69 commit ed70cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cooltools/api/rearrange.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,6 @@ def rearrange_cooler(
),
assembly=assembly,
mode=mode,
mergebuf=int(1e9),
mergebuf=int(2e7),
)
logging.info(f"Created a new cooler at {out_cooler}")

0 comments on commit ed70cef

Please sign in to comment.