Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions sgkit/tests/io/test_vcf2zarr_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pytest

pytest.importorskip("bio2zarr")
from bio2zarr import vcf2zarr
from bio2zarr import icf
from bio2zarr.constants import (
FLOAT32_FILL,
FLOAT32_MISSING,
Expand All @@ -23,7 +23,7 @@ def test_vcf2zarr_compat(shared_datadir, tmp_path):
vcf_path = shared_datadir / "sample.vcf.gz"
vcz_path = tmp_path.joinpath("sample.vcz").as_posix()

vcf2zarr.convert(
icf.convert(
[vcf_path],
vcz_path,
variants_chunk_size=5,
Expand Down
Loading