
Load an existing SingleCells from disk
load_existing.RdHelper function that can load the parameters to access the on-disk stored data into the class.
Examples
# a fresh handle over a directory written earlier
sc <- demo_single_cells(prepped = FALSE)
dir <- sc@dir_data
sc <- load_existing(SingleCells(dir_data = dir), .verbose = FALSE)
dim(sc)
#> [1] 500 50
unlink(dir, recursive = TRUE, force = TRUE)