View source: R/liftover_grlist.R
liftover_grlist | R Documentation |
Perform genome build liftover to one or more GRanges objects at once.
liftover_grlist(
grlist,
input_build,
output_build = "hg19",
style = "UCSC",
as_grangeslist = FALSE,
merge_all = FALSE,
verbose = TRUE
)
grlist |
A named list of GRanges objects, or simply a single unlisted GRanges object. |
input_build |
The genome build of |
output_build |
Desired genome build for
|
style |
Chromosome style, set by seqlevelsStyle.
|
as_grangeslist |
Return as a GRangesList. |
merge_all |
Merge all GRanges into a single GRanges object. |
verbose |
Print messages. |
Named list of lifted GRanges objects.
grlist <- list("gr1"=GenomicRanges::GRanges("4:1-100000"),
"gr2"=GenomicRanges::GRanges("6:1-100000"),
"gr3"=GenomicRanges::GRanges("8:1-100000"))
grlist_lifted <- liftover_grlist(grlist = grlist,
input_build = "hg19",
output_build="hg38")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.