1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
### =========================================================================
### writeTENxMatrix()
### -------------------------------------------------------------------------
###
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Low-level helpers to create a TENxMatrix realization sink and append data
### to it
###
.write_TENx_component <- function(filepath, group, name, data,
H5type=NULL, chunk.length=NULL)
{
name <- paste0(group, "/", name)
size <- compute_max_string_size(data)
data_len <- length(data)
if (is.null(chunk.length) || chunk.length > data_len) {
chunk_len <- data_len
} else {
chunk_len <- chunk.length
}
create_and_log_HDF5_dataset(filepath, name, dim=data_len,
type=typeof(data), H5type=H5type, size=size,
chunkdim=chunk_len, level=0L)
h5write(data, filepath, name)
}
.write_shape <- function(filepath, group, shape)
{
## Standard HDF5 type H5T_STD_U32LE: unsigned 32-bit integer, little-endian
.write_TENx_component(filepath, group, "shape", shape,
H5type="H5T_STD_U32LE")
}
.write_genes <- function(filepath, group, genes)
{
.write_TENx_component(filepath, group, "genes", genes,
chunk.length=2048L)
}
.write_barcodes <- function(filepath, group, barcodes)
{
.write_TENx_component(filepath, group, "barcodes", barcodes,
chunk.length=4096L)
}
.create_empty_data <- function(filepath, group, maxlen, type, level)
{
name <- paste0(group, "/data")
create_and_log_HDF5_dataset(filepath, name, dim=0L, maxdim=maxlen,
type=type, chunkdim=16384L, level=level)
}
.create_empty_row_indices <- function(filepath, group, maxlen, level)
{
name <- paste0(group, "/indices")
## Standard HDF5 type H5T_STD_U32LE: unsigned 32-bit integer, little-endian
create_and_log_HDF5_dataset(filepath, name, dim=0L, maxdim=maxlen,
type="integer", H5type="H5T_STD_U32LE",
chunkdim=16384L, level=level)
}
.create_empty_indptr <- function(filepath, group, ncol)
{
name <- paste0(group, "/indptr")
## Standard HDF5 type H5T_STD_U32LE: unsigned 32-bit integer, little-endian
create_and_log_HDF5_dataset(filepath, name, dim=0L, maxdim=ncol+1L,
type="integer", H5type="H5T_STD_U32LE",
chunkdim=4096L, level=0L)
h5append(0, filepath, name)
}
### The current length of 'indptr' is the "current 1-based column index"
### i.e. the nb of columns written so far + 1.
.get_current_col_index <- function(filepath, group)
{
h5length(filepath, paste0(group, "/indptr"))
}
.append_data <- function(filepath, group, data)
{
name <- paste0(group, "/data")
h5append(data, filepath, name)
}
.append_row_indices <- function(filepath, group, row_indices)
{
name <- paste0(group, "/indices")
h5append(row_indices, filepath, name)
}
### Return the last value in the extended "indptr" dataset.
.append_indptr <- function(filepath, group, col_indices, ncol)
{
name <- paste0(group, "/indptr")
old_len <- h5length(filepath, name)
old_data_len <- h5mread(filepath, name, starts=list(old_len),
as.vector=TRUE)
indptr <- end(PartitioningByEnd(col_indices, NG=ncol)) + old_data_len
new_len <- h5append(indptr, filepath, name)
h5mread(filepath, name, starts=list(new_len), as.vector=TRUE)
}
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### TENxRealizationSink objects
###
### The TENxRealizationSink class is a concrete RealizationSink subclass that
### implements a TENxMatrix realization sink.
###
setClass("TENxRealizationSink",
contains="RealizationSink",
representation(
dim="integer", # Naming this slot "dim" makes dim() work
# out of the box.
dimnames="list",
type="character", # Single string.
filepath="character", # Single string.
group="character" # Name of the group in the HDF5 file
# where to write the data.
)
)
setMethod("dimnames", "TENxRealizationSink",
function(x)
{
ans <- x@dimnames
if (all(S4Vectors:::sapply_isNULL(ans)))
return(NULL)
ans
}
)
setMethod("type", "TENxRealizationSink", function(x) x@type)
TENxRealizationSink <- function(dim, dimnames=NULL, type="double",
filepath=NULL, group=NULL, level=NULL)
{
if (!is.integer(dim))
stop(wmsg("'dim' must be an integer vector"))
if (length(dim) != 2L)
stop(wmsg("TENxMatrix backend only supports ",
"realization of matrix-like objects"))
if (S4Vectors:::anyMissingOrOutside(dim, 0L))
stop(wmsg("'dim' cannot contain NAs or negative values"))
if (is.null(dimnames)) {
dimnames <- vector("list", length(dim))
} else {
if (!(is.list(dimnames) && length(dimnames) == length(dim)))
stop(wmsg("'dimnames' must be NULL or a list ",
"with 1 list element per dimension"))
}
if (is.null(filepath)) {
filepath <- getHDF5DumpFile()
} else {
filepath <- normalize_dump_filepath(filepath)
}
if (is.null(group)) {
group <- getHDF5DumpName(for.use=TRUE)
} else {
group <- normalize_dump_name(group)
}
if (is.null(level)) {
level <- getHDF5DumpCompressionLevel()
} else {
level <- normalize_compression_level(level)
}
ok <- h5createGroup(filepath, group)
if (!ok)
stop(wmsg("failed to create group '", group, "' ",
"in file '", filepath, "'"), call.=FALSE)
.write_shape(filepath, group, dim)
if (!is.null(dimnames)) {
rownames <- dimnames[[1L]]
if (!is.null(rownames))
.write_genes(filepath, group, rownames)
colnames <- dimnames[[2L]]
if (!is.null(colnames))
.write_barcodes(filepath, group, colnames)
}
.create_empty_data(filepath, group, prod(dim), type, level)
.create_empty_row_indices(filepath, group, prod(dim), level)
.create_empty_indptr(filepath, group, dim[[2L]])
new2("TENxRealizationSink", dim=dim, dimnames=dimnames, type=type,
filepath=filepath, group=group)
}
### Defining this method will force writeTENxMatrix() (thru
### BLOCK_write_to_sink() thru sinkApply()) to write blocks that
### span full columns which is a requirement of the write_block()
### method for TENxRealizationSink objects. See below.
setMethod("chunkdim", "TENxRealizationSink",
function(x) c(nrow(x), min(ncol(x), 1L))
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Writing data to a TENxRealizationSink object
###
.check_viewport <- function(viewport, sink)
{
if (!identical(nrow(viewport), nrow(sink)))
stop(wmsg("The \"write_block\" method for ", class(sink), " objects ",
"can only be used to write a block to a viewport that ",
"spans full columns i.e. to a viewport such that ",
"'nrow(viewport) == nrow(sink)'."))
current_col_idx <- .get_current_col_index(sink@filepath, sink@group)
if (!identical(start(viewport)[[2L]], current_col_idx))
stop(wmsg("The block to write is not adjacent to the last ",
"written block.\n\n",
"The \"write_block\" method for ", class(sink), " objects ",
"can only be used in \"appending mode\", that is, each ",
"block must be written to a viewport that is adjacent to ",
"the viewport where the previous block was written (with ",
"the exception of the 1st written block which must be ",
"written to a viewport that starts at the beginning of ",
"the sink)."))
}
### Support "appending mode" only.
setMethod("write_block", "TENxRealizationSink",
function(sink, viewport, block)
{
.check_viewport(viewport, sink)
if (!is(block, "COO_SparseArray"))
block <- as(block, "COO_SparseArray")
## Append the nonzero data.
new_data_len1 <- .append_data(sink@filepath, sink@group, block@nzdata)
## Append the 0-based row indices of the nonzero data.
new_data_len2 <- .append_row_indices(sink@filepath, sink@group,
block@nzcoo[ , 1L] - 1L)
stopifnot(new_data_len2 == new_data_len1) # sanity check
## Append the "indptr" values.
new_data_len3 <- .append_indptr(sink@filepath, sink@group,
block@nzcoo[ , 2L],
ncol(viewport))
stopifnot(new_data_len3 == new_data_len1) # sanity check
sink
}
)
### Only performs some sanity checks (there is actually nothing to close).
setMethod("close", "TENxRealizationSink",
function(con)
{
current_col_idx <- .get_current_col_index(con@filepath, con@group)
if (current_col_idx <= ncol(con))
stop(wmsg("cannot close ", class(con), " object before ",
"writing all data to it"))
stopifnot(current_col_idx == ncol(con) + 1L) # should never happen
}
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Coercing a TENxRealizationSink object
###
setAs("TENxRealizationSink", "TENxMatrixSeed",
function(from) TENxMatrixSeed(from@filepath, from@group)
)
setAs("TENxRealizationSink", "TENxMatrix",
function(from) DelayedArray(as(from, "TENxMatrixSeed"))
)
setAs("TENxRealizationSink", "DelayedArray",
function(from) DelayedArray(as(from, "TENxMatrixSeed"))
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### writeTENxMatrix()
###
### Write the dataset to the current dump if 'filepath' and 'group' are not
### specified.
### Return a TENxMatrix object pointing to the newly written HDF5-based
### sparse matrix on disk.
writeTENxMatrix <- function(x, filepath=NULL, group=NULL,
level=NULL, verbose=NA)
{
verbose <- DelayedArray:::normarg_verbose(verbose)
sink <- TENxRealizationSink(dim(x), dimnames(x), type(x),
filepath=filepath, group=group, level=level)
sink <- BLOCK_write_to_sink(sink, x, verbose=verbose)
ans <- as(sink, "TENxMatrix")
if (verbose)
message("sparsity: ", round(sparsity(ans), digits=2))
ans
}
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Coercion to TENxMatrix
###
### The methods below write the object to disk. Note that coercion from
### TENxRealizationSink to TENxMatrix is already taken care of by the specific
### method above and doesn't write anything to disk. So coercing to TENxMatrix
### in general writes the object to disk *except* when the object to coerce is
### a TENxRealizationSink object.
###
### Write to current dump.
.as_TENxMatrix <- function(from) writeTENxMatrix(from)
setAs("ANY", "TENxMatrix", .as_TENxMatrix)
### Automatic coercion method from DelayedArray to TENxMatrix silently returns
### a broken object (unfortunately these dummy automatic coercion methods don't
### bother to validate the object they return). So we overwrite it.
setAs("DelayedArray", "TENxMatrix", .as_TENxMatrix)
setAs("DelayedMatrix", "TENxMatrix", .as_TENxMatrix)
|