View source: R/BrickContainer_functions.R
| BrickContainer_get_path_to_file | R Documentation | 
BrickContainer_get_path_to_file fetches the list of HDF file paths
associated to a particular BrickContainer
BrickContainer_get_path_to_file(
    Brick = NULL,
    chr1 = NA,
    chr2 = NA,
    type = NA,
    resolution = NA
)
Brick | 
 Required. A string specifying the path to the Brick store created with Create_many_Bricks.  | 
chr1 | 
 Required. A character vector of length 1 specifying the chromosome corresponding to the rows of the matrix  | 
chr2 | 
 Required. A character vector of length 1 specifying the chromosome corresponding to the columns of the matrix  | 
type | 
 A value from one of cis, trans specifying the type of files to list cis will list intra-choromosomal file paths and trans will list inter-chromosomal file paths.  | 
resolution | 
 Optional. Default NA When an object of class BrickContainer is provided, resolution defines the resolution on which the function is executed  | 
A vector containing filepaths
Bintable.path <- system.file("extdata",
"Bintable_100kb.bins", package = "HiCBricks")
out_dir <- file.path(tempdir(), "BrickContainer_list_filepath_test")
dir.create(out_dir)
My_BrickContainer <- Create_many_Bricks(BinTable = Bintable.path, 
  bin_delim = " ", output_directory = out_dir, file_prefix = "Test", 
  experiment_name = "Vignette Test", resolution = 100000, 
  remove_existing = TRUE)
BrickContainer_get_path_to_file(Brick = My_BrickContainer, chr1 = "chr2L",
chr2 = "chr2L", resolution = 100000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.