Brick_mcool_normalisation_exists {HiCBricks} | R Documentation |
Brick_mcool_normalisation_exists
checks if a particular normalisation
exists in an mcool file.
Brick_mcool_normalisation_exists(mcool = NULL, norm.factor = NULL, binsize = NULL)
mcool |
Required. Path to an mcool file. |
norm.factor |
Optional. Default "Iterative-Correction". The normalization factor to use for normalization from an mcool file. |
binsize |
Optional. The binsize to select from an mcool file. |
A boolean vector of length 1
## Not run: require(curl) curl_download(url = paste("https://data.4dnucleome.org/" "files-processed/4DNFI7JNCNFB/" "@download/4DNFI7JNCNFB.mcool",sep = ""), destfile = "./H1-hESC-HiC-4DNFI7JNCNFB.mcool") mcool <- "./H1-hESC-HiC-4DNFI7JNCNFB.mcool" Brick_mcool_normalisation_exists(mcool = mcool, norm.factor = "Iterative-Correction", binsize = 10000) ## End(Not run)