loadArchRProject.Rd
This function will load a previously saved ArchRProject and re-normalize paths for usage.
loadArchRProject(path = "./", force = FALSE, showLogo = TRUE)
A character path to an ArchRProject
directory that was previously saved using saveArchRProject()
.
A boolean value indicating whether missing optional ArchRProject
components (i.e. peak annotations /
background peaks) should be ignored when re-normalizing file paths. If set to FALSE
loading of the ArchRProject
will fail unless all components can be found.
A boolean value indicating whether to show the ascii ArchR logo after successful creation of an ArchRProject
.
# Get Small PBMC Project Location
zipProj <- file.path(system.file("testdata", package="ArchR"), "PBSmall.zip")
# Copy to current directory
file.copy(zipProj, basename(zipProj), overwrite = TRUE)
# Unzip
unzip(basename(zipProj), overwrite = TRUE)
# Remove
file.remove(basename(zipProj))
# Load
loadArchRProject("PBSmall")