Skip to content

Commit

Permalink
Fixed higlass#154
Browse files Browse the repository at this point in the history
  • Loading branch information
AryazE committed Sep 4, 2024
1 parent de67e9d commit 676fa9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clodius/cli/aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -901,8 +901,8 @@ def _bedgraph(
def add_values_to_data_buffers(buffers_to_add, nan_buffers_to_add):
curr_zoom = 0

data_buffers[0] += buffers_to_add
nan_data_buffers[0] += nan_buffers_to_add
data_buffers[0] += [bta.astype(np.float64) for bta in buffers_to_add]
nan_data_buffers[0] += [nbta.astype(np.float64) for nbta in nan_buffers_to_add]

curr_time = time.time() - t1
percent_progress = (positions[curr_zoom] + 1) / float(assembly_size)
Expand Down

0 comments on commit 676fa9d

Please sign in to comment.