Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions vczstore/zarr_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,6 @@ def append(vcz1, vcz2):
)
arr.resize(new_shape)

# consolidate metadata (if supported)
try:
zarr.consolidate_metadata(vcz1)
except TypeError:
# store doesn't support consolidated metadata, that's OK
pass


def remove(vcz, sample_id):
"""Remove a sample from vcz and overwrite with missing data"""
Expand All @@ -112,10 +105,3 @@ def remove(vcz, sample_id):
and dims(arr)[1] == "samples"
):
root[var][:, selection, ...] = missing_val(arr)

# consolidate metadata (if supported)
try:
zarr.consolidate_metadata(vcz)
except TypeError:
# store doesn't support consolidated metadata, that's OK
pass
Loading