We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Python API that's emerging is to do things like:
from bio2zarr import vcf vcf.convert(["my_file.vcf.gz", "out.zarr")
It would probably be better to do it like
from bio2zarr import vcf2zarr vcf2zarr.convert(["my_file.vcf.gz", "out.zarr")
Then, all the functions exported are in that flat namespace vcf2zarr. How stuff is split across files within the package is private.
vcf2zarr
The text was updated successfully, but these errors were encountered:
Refactor to use vcf2zarr module
7475735
Closes sgkit-dev#40
80d5bed
98c5699
51d71e8
Successfully merging a pull request may close this issue.
The Python API that's emerging is to do things like:
It would probably be better to do it like
Then, all the functions exported are in that flat namespace
vcf2zarr
. How stuff is split across files within the package is private.The text was updated successfully, but these errors were encountered: