Skip to content

Commit bee6a7b

Browse files
Merge pull request #76 from benjeffery/fix-accounting
Fix size accounting
2 parents facce11 + 652694f commit bee6a7b

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
@@ -64,7 +64,7 @@ class VcfFieldSummary:
6464
def update(self, other):
6565
self.num_chunks += other.num_chunks
6666
self.compressed_size += other.compressed_size
67-
self.uncompressed_size = other.uncompressed_size
67+
self.uncompressed_size += other.uncompressed_size
6868
self.max_number = max(self.max_number, other.max_number)
6969
self.min_value = min(self.min_value, other.min_value)
7070
self.max_value = max(self.max_value, other.max_value)

0 commit comments

Comments
 (0)