Closed mtmorgan closed 1 year ago
I haven't looked into it but I'm guessing this file uses the AnnData v0.8 format. At the moment the safest /most reliable approach is to use the Python reader. The R reader is currently neglected and needs a fair bit of work but that won't happen before the next release.
cellxgene provides H5AD files for each data set. A recent download of this one (sorry, there is no direct url; click on the cloud download button) has content like (from
rhdf5::h5ls()
)whereas older downloads have
I guess??? this is a change in AnnData on-disk representation? This causes
h5ad <- readH5AD(local_file, reader = "R", use_hdf5 = TRUE)
to fail (an error is translated to a warning; the net result is that no colData is added to the SummarizedExperiment.Will the R-based reader be updated, or is the best strategy to switch to the python reader?