Description Usage Arguments Value Author(s) Examples
A wrapper script for coverting the contents of BAM files for use with
GenomicRanges
classes.
1 2 3 4 5 6 7 8 | ## S4 method for signature 'character'
BAM2GRanges(path, what = character(),
flag = scanBamFlag(isUnmappedQuery = FALSE, isDuplicate = FALSE),
verbose = TRUE)
## S4 method for signature 'character'
BAM2GRangesList(paths, what = character(),
flag = scanBamFlag(isUnmappedQuery = FALSE, isDuplicate = FALSE),
verbose = TRUE)
|
path |
A character vector of length 1. The path of the BAM file. |
paths |
A character vector of possibly any length. The paths of the BAM files. |
what |
What optional attributes of a read to retain. See
|
flag |
What kinds of reads to retain. See
|
verbose |
Whether to print the progess of processing. |
For the single pathname method; a GRanges object. For the multiple pathnames method; a GRangesList object.
Dario Strbenac
1 2 3 | tiny.BAM <- system.file("extdata", "ex1.bam", package = "Rsamtools")
if(length(tiny.BAM) > 0)
print(BAM2GRanges(tiny.BAM))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.