Skip to content

Commit

Permalink
grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWellie committed Jan 29, 2025
1 parent c4f2c27 commit b2e3525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/talos/RunHailFiltering.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ def main(
# repartition if required - local Hail with finite resources has struggled with some really high (~120k) partitions
# this creates a local duplicate of the input data with far smaller partition counts, for less processing overhead
if mt.n_partitions() > MAX_PARTITIONS:
get_logger().info('Shrinking partitions way down with a unshuffled repartition')
get_logger().info('Shrinking partitions way down with an unshuffled repartition')
mt = mt.repartition(shuffle=False, n_partitions=number_of_cores * 10)
if checkpoint:
get_logger().info('Trying to write the result locally, might need more space on disk...')
Expand Down

0 comments on commit b2e3525

Please sign in to comment.