I'm surprised that DelayedMatrix inherits from DataTable. Originally
at least, DataTable was meant to represent a data.frame-like object,
not a matrix-like object. Since rbind2() and cbind2() assume that
DataFrame is a valid default implementation of DataTable, they will
coerce the matrix to a Data
Yes that does get around the problem, thanks!
I would note, though, that for me at least, its a workaround and not ideal
functionality, since to use it in my function means that I now I have to have
two different code snippets depending on whether my input object (here
`testhdf`) is a matrix o
Does `rbind(testhdf, DelayedArray(testdata))` give you what you want?
On Wed, 4 Apr 2018 at 14:58 Elizabeth Purdom
wrote:
> Hello,
>
> I am trying to do a rbind a normal (in memory) matrix with a HDF5Matrix
> object or DelayedArray object and I am hitting problems. I’m using the
> development ve