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
Bug in H5 data assertion for h5ad files
I tried to use has_h5_attribute and has_h5_keys to assert scanpy outputs (here)
has_h5_attribute
has_h5_keys
This assertion has the same problem as the h5ad metadata (Which was fixed here).
for example:
<output name="anndata_out" ftype="h5ad"> <assert_contents> <has_h5_keys keys="X,layers,obs,obsm,obsp,uns,var,varm,varp"/> <has_h5_attribute key="obs" value="louvain"/> <has_h5_attribute key="uns" value="louvain"/> </assert_contents> </output>
fails with this error:
Not a HDF5 file or H5 attributes do not match: [('encoding-type', 'anndata'), ('encoding-version', '0.1.0')] (obs : louvain)
The text was updated successfully, but these errors were encountered:
This works: <has_h5_keys keys="obsm/X_PCA" />
<has_h5_keys keys="obsm/X_PCA" />
Sorry, something went wrong.
No branches or pull requests
Bug in H5 data assertion for h5ad files
I tried to use
has_h5_attribute
andhas_h5_keys
to assert scanpy outputs (here)This assertion has the same problem as the h5ad metadata (Which was fixed here).
for example:
fails with this error:
The text was updated successfully, but these errors were encountered: