View source: R/dt_to_granges.R
dt_to_granges | R Documentation |
Convert data.table/data.frame to a GRanges object.
dt_to_granges(
dat,
chrom_col = "seqnames",
start_col = "start",
end_col = "end",
style = "NCBI",
verbose = TRUE
)
dat |
Data. |
chrom_col |
Chromosome column name. |
start_col |
Genomic start position column name. |
end_col |
Genomic end position column name. |
style |
GRanges style (e.g. "NCBI, "UCSC") set by seqlevelsStyle. |
verbose |
Print messages. |
GRanges
dat <- data.frame(GenomicRanges::GRanges("4:1-1000000"))
gr <- dt_to_granges(dat = dat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.