Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Bgen to zarr (v2) #22

Merged
merged 4 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ numpy
scipy
xarray
zarr
bgen_reader>=4.0.5
bgen_reader==4.0.5
git+https://github.com/pangeo-data/rechunker
git+https://github.com/pystatgen/sgkit
9 changes: 8 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ignore =
[isort]
default_section = THIRDPARTY
known_first_party = sgkit
known_third_party = bgen_reader,dask,numpy,pytest,setuptools,xarray
known_third_party = bgen_reader,dask,numpy,pytest,rechunker,setuptools,xarray,zarr
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
Expand All @@ -67,9 +67,16 @@ ignore_missing_imports = True
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-rechunker.*]
ignore_missing_imports = True
[mypy-bgen_reader.*]
ignore_missing_imports = True
[mypy-sgkit.*]
ignore_missing_imports = True
[mypy-zarr.*]
ignore_missing_imports = True
[mypy-sgkit_bgen.tests.*]
disallow_untyped_defs = False
[mypy-sgkit_bgen.*]
allow_redefinition = True
warn_unused_ignores = False
4 changes: 2 additions & 2 deletions sgkit_bgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .bgen_reader import read_bgen # noqa: F401
from .bgen_reader import bgen_to_zarr, read_bgen, rechunk_bgen # noqa: F401

__all__ = ["read_bgen"]
__all__ = ["read_bgen", "rechunk_bgen", "bgen_to_zarr"]
Loading