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
TypeError: expected unicode string, found 130
vcf_to_zarr("example.vcf.gz", "vcf.zarr") ds = sg.load_dataset("vcf.zarr") sg.save_dataset(ds, "vcf2.zarr")
Currently fails with TypeError: expected unicode string, found 130 I believe this is due to pydata/xarray#3476 as the workaround suggested there:
for v in list(ds.coords.keys()): if ds.coords[v].dtype == object: ds[v].encoding.clear() for v in list(ds.variables.keys()): if ds[v].dtype == object: ds[v].encoding.clear()
prevents this error. I'm not sure there is anything sgkit can do about this - looking into it.
The text was updated successfully, but these errors were encountered:
See also #852
Sorry, something went wrong.
Ahh, nice! Didn't see that, thanks @tomwhite.
I can confirm that using sgkit HEAD fixes this issue.
HEAD
No branches or pull requests
Currently fails with
TypeError: expected unicode string, found 130
I believe this is due to pydata/xarray#3476 as the workaround suggested there:
prevents this error. I'm not sure there is anything sgkit can do about this - looking into it.
The text was updated successfully, but these errors were encountered: