readLiger | R Documentation |
This file reads a liger object stored in RDS files under all kinds of types.
A liger object with in-memory data created from package version since 1.99.
A liger object with on-disk H5 data associated, where the link to H5 files will be automatically restored.
A liger object created with older package version, and can be updated to the latest data structure by default.
readLiger(
filename,
dimredName,
clusterName = "clusters",
h5FilePath = NULL,
update = TRUE
)
filename |
Path to an RDS file of a |
dimredName |
The name of variable in |
clusterName |
The name of variable in |
h5FilePath |
Named character vector for all H5 file paths. Not required for object run with in-memory analysis. For object containing H5-based analysis (e.g. online iNMF), this must be supplied if the H5 file location is different from that at creation time. |
update |
Logical, whether to update an old (<=1.99.0) |
New version of liger object
# Save and read regular current-version liger object
tempPath <- tempfile(fileext = ".rds")
saveRDS(pbmc, tempPath)
pbmc <- readLiger(tempPath, dimredName = NULL)
# Save and read H5-based liger object
h5Path <- system.file("extdata/ctrl.h5", package = "rliger")
h5tempPath <- tempfile(fileext = ".h5")
file.copy(from = h5Path, to = h5tempPath)
lig <- createLiger(list(ctrl = h5tempPath))
tempPath <- tempfile(fileext = ".rds")
saveRDS(lig, tempPath)
lig <- readLiger(tempPath, h5FilePath = list(ctrl = h5tempPath))
## Not run:
# Read a old liger object <= 1.0.1
# Assume the dimensionality reduction method applied was UMAP
# Assume the clustering was derived with Louvain method
lig <- readLiger(
filename = "path/to/oldLiger.rds",
dimredName = "UMAP",
clusterName = "louvain"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.