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
DeseqDataSet
When I attempt to save my DeseqDataSet AnnData object to H5AD, errors are thrown becuase
dds.varm['replaced']
dds.uns['trend_coeffs']
are stored as a pandas.core.series.Series, which cannot be written to H5AD in those positions. Calling
pandas.core.series.Series
dds.varm['replaced'] = dds.varm['replaced'].values
dds.uns['trend_coeffs'] = dds.uns['trend_coeffs'].to_dict()
before dds.write_h5ad(<path>) resolved the issue without loss of functionality.
dds.write_h5ad(<path>)
PyDESeq2 version 0.4.7 on CentOS 7.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I attempt to save my
DeseqDataSet
AnnData object to H5AD, errors are thrown becuasedds.varm['replaced']
dds.uns['trend_coeffs']
are stored as a
pandas.core.series.Series
, which cannot be written to H5AD in those positions. Callingdds.varm['replaced'] = dds.varm['replaced'].values
dds.uns['trend_coeffs'] = dds.uns['trend_coeffs'].to_dict()
before
dds.write_h5ad(<path>)
resolved the issue without loss of functionality.PyDESeq2 version 0.4.7 on CentOS 7.
The text was updated successfully, but these errors were encountered: