You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently, when reading the inputs, mu.read_10x_h5 creates two OrderedDicts in mdata.mod['atac'].uns. If I set them to dict then it saves the object correctly but it would be nice to handle this automatically.
Thanks for opening this issue, we've been moving away from OrderedDict in muon but I realise that the combination of older versions of muon and newer versions of anndata results in this error...
fromcollectionsimportOrderedDictimportnumpyasnpfromjaximportrandomfromanndataimportAnnDatax=random.normal(key=random.PRNGKey(1), shape=(1000,500))
adata=AnnData(np.array(x))
adata.uns["ord_dict"] =OrderedDict({"key1": "value1"})
adata.write("anndata_with_ordered_dict.h5ad")
# => TypeError: No method has been defined for writing <class 'collections.OrderedDict'> elements to <class 'h5py._hl.group.Group'>
We aim to circumvent it in two ways: use dict() in muon from now on, as mentioned above, as well as see if we can account for OrderedDict in AnnData's I/O spec. For the latter, I've just opened scverse/anndata#796.
Hi,
When trying to write the
mudata
object,h5py
crashes due to some.uns
values beingOrderedDict
instead of normal dictionaries.Here is how to reproduce the bug:
The
pbmc10k
is the data used in this tutorial.Apparently, when reading the inputs,
mu.read_10x_h5
creates twoOrderedDict
s inmdata.mod['atac'].uns
. If I set them todict
then it saves the object correctly but it would be nice to handle this automatically.Thanks you for your time!
System
The text was updated successfully, but these errors were encountered: