Skip to content

Commit 652694f

Browse files
committed
Fix size accounting
1 parent c404974 commit 652694f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bio2zarr/vcf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class VcfFieldSummary:
5353
def update(self, other):
5454
self.num_chunks += other.num_chunks
5555
self.compressed_size += other.compressed_size
56-
self.uncompressed_size = other.uncompressed_size
56+
self.uncompressed_size += other.uncompressed_size
5757
self.max_number = max(self.max_number, other.max_number)
5858
self.min_value = min(self.min_value, other.min_value)
5959
self.max_value = max(self.max_value, other.max_value)

0 commit comments

Comments
 (0)