View source: R/get.chrom.length.R
get.chrom.length | R Documentation |
Retrieves chromosome size data for the human GRCh38 (hg38) genome assembly using UCSC chromInfo
data, accessed via the circlize
package.
get.chrom.length(genome.assembly)
genome.assembly |
Character string specifying the genome assembly. Currently, only |
The function fetches chromosome size information from the UCSC genome browser via the circlize::read.chromInfo()
function. It returns data for all 22 autosomes in addition to X and Y chromosomes in the human GRCh38 (hg38) assembly. Chromosome names are formatted without the "chr"
prefix.
A data frame with the following columns:
Chromosome identifier (e.g., 1, 2, ..., X, Y).
Chromosome size in base pairs.
Abdelrahman Elsayed abdelrahman.elsayed@stjude.org and Stanley Pounds stanley.pounds@stjude.org
Cao, X., Elsayed, A. H., & Pounds, S. B. (2023). Statistical Methods Inspired by Challenges in Pediatric Cancer Multi-omics.
read.chromInfo
# Retrieve chromosome size data for the GRCh38 genome assembly
hg38.chrom.size <- get.chrom.length("Human_GRCh38")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.