Description Usage Arguments Details Value Author(s) Examples
Convert a bam file into a bigwig file with coverage.
1 2 | bam2bigwig(bamFiles, bigwigFiles = sub("\\.bam$", ".bw", bamFiles,
ignore.case = TRUE))
|
bamFiles |
The |
bigwigFiles |
The filenames of output bigwig files. |
All the mapped reads are loaded, no matter they are paired or not, properly paired or not.
The filenames of output bigwig files.
Ge Tan
1 2 3 4 5 | bamfile <- system.file("extdata", "ex1.bam", package="Rsamtools",
mustWork=TRUE)
bwFile <- tempfile(fileext=".bw")
bam2bigwig(bamfile, bwFile)
file.remove(bwFile)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.