read_bigwig | R Documentation |
Read data from bigWig files.
read_bigwig(bwfile, chrom = NULL, start = NULL, end = NULL, as = NULL)
bwfile |
filename for bigWig file |
chrom |
read data for specific chromosome |
start |
start position for data |
end |
end position for data |
as |
return data as a specific type.
The default is a tibble ( |
tibble
https://github.com/dpryan79/libBigWig
https://github.com/brentp/bw-python
bw <- system.file("extdata", "test.bw", package = "cpp11bigwig")
read_bigwig(bw)
read_bigwig(bw, chrom = "10")
read_bigwig(bw, chrom = "1", start = 100, end = 130)
read_bigwig(bw, as = "GRanges")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.