Description Usage Arguments Value Examples
View source: R/BrickContainer_functions.R
load_BrickContainer
creates a BrickContainer object from a JSON file
1 | load_BrickContainer(config_file = NULL, project_dir = NULL)
|
config_file |
Default NULL
A character string of length 1 specifying the path to the path to the
configuration json created using |
project_dir |
Default NULL
A character string of length 1 specifying the path to the path to the
configuration json created using |
An object of class BrickContainer
1 2 3 4 5 6 7 8 9 | Bintable.path <- system.file("extdata",
"Bintable_100kb.bins", package = "HiCBricks")
out_dir <- file.path(tempdir(), "BrickContainer_load_test")
dir.create(out_dir)
Create_many_Bricks(BinTable = Bintable.path,
bin_delim = " ", output_directory = out_dir, file_prefix = "Test",
experiment_name = "Vignette Test", resolution = 100000,
remove_existing = TRUE)
My_BrickContainer <- load_BrickContainer(project_dir = out_dir)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.