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
I'm working with a scCRISPR dataset from another group, I can open it with muon but not with MuData (1.8.0). Some details below. Thanks for taking a look!
Thanks for providing the sample file. This works for me with current Github master. We haven't had a Bioc release in a while. @gtca can you make a new release?
I'm working with a scCRISPR dataset from another group, I can open it with muon but not with MuData (1.8.0). Some details below. Thanks for taking a look!
In python:
In R:
I started to try to load with MuData (rename file to
test.h5mu
). The first error I came to isThis was coming from roughly here (I'm looking at 1.8.0 code):
https://github.com/ilia-kats/MuData/blob/master/R/read_h5mu.R#L60
This fails on this dataset because
H5Dclose(col)
won't work ascol
is of type group not dataset.I did a simple thing and just comment out
H5Dclose
.The next error (which may not be relevant if my simple step is misguided):
This is coming from the first call to
read_dataframe
. There is a linedo.call(data.frame, args = col_list)
but we have:So this cannot be coerced to a data.frame.
The text was updated successfully, but these errors were encountered: