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
This is from user feedback.
Update 2023-10-09:
When one writes an AnnData object with X=None, then on readback, two different possibilities occur on read-in:
X=None
adata = anndata.read_h5ad('the.h5ad', 'r')
adata.X
adata
adata = anndata.read_h5ad('the.h5ad')
None
#1672 covered the former. #1767 covers the latter.
The text was updated successfully, but these errors were encountered:
#1672 is merged and released in 1.5.0rc1.
Sorry, something went wrong.
[sc-35075]
johnkerl
No branches or pull requests
This is from user feedback.
Update 2023-10-09:
When one writes an AnnData object with
X=None
, then on readback, two different possibilities occur on read-in:adata = anndata.read_h5ad('the.h5ad', 'r')
, thenadata.X
does not exist as an attribute ofadata
adata = anndata.read_h5ad('the.h5ad')
, thenadata.X
has Python valueNone
#1672 covered the former. #1767 covers the latter.
The text was updated successfully, but these errors were encountered: