restoreH5Liger | R Documentation |
When loading the saved liger object with HDF5 data in a new R session, the links to HDF5 files would be closed. This function enables the restoration of those links so that new analyses can be carried out.
restoreH5Liger(object, filePath = NULL)
restoreOnlineLiger(object, file.path = NULL)
object |
liger or ligerDataset object. |
filePath |
Paths to HDF5 files. A single character path for
ligerDataset input or a list of paths named by the datasets for
liger object input. Default |
file.path |
Will be deprecated with |
object
with restored links.
restoreOnlineLiger
will be deprecated for clarifying the terms used
for data structure.
h5Path <- system.file("extdata/ctrl.h5", package = "rliger")
tempPath <- tempfile(fileext = ".h5")
file.copy(from = h5Path, to = tempPath)
lig <- createLiger(list(ctrl = tempPath))
# Now it is actually an invalid object! which is equivalent to what users
# will get with `saveRDS(lig, "object.rds"); lig <- readRDS("object.rds")``
closeAllH5(lig)
lig <- restoreH5Liger(lig)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.