Bioconductor / DelayedArray

A unified framework for working transparently with on-disk and in-memory array-like datasets
https://bioconductor.org/packages/DelayedArray
24 stars 9 forks source link

names on dimnames #43

Closed lawremi closed 4 years ago

lawremi commented 5 years ago

Names on dimnames seem to be dropped. Those are sometimes useful for indicating what the names mean.

dn <- dimnames(array)
names(dn) <- c("foo", "bar")
dimnames(array) <- dn
names(dimnames(array)) # NULL
hpages commented 4 years ago

Hi Michael, this should be addressed in DelayedArray 0.11.8.

H.

hpages commented 4 years ago

I actually had to commit one more tweak to properly support names on the dimnames (commit fc32d0792129ea50158dfe17a34924364bf4b60e). Hopefully this time I got it right.

lawremi commented 4 years ago

Thanks a lot, @hpages !