Description Usage Arguments Details Value Author(s) See Also Examples
This method computes the approximate coverage of each base in a given region.
1 | coverageOnTarget(alnReads, targetRegion)
|
alnReads |
A list as returned by |
targetRegion |
The target region as a |
The detailed alignment information given by the CIGAR strings in .bam files are ignored by the function. Instead, it is assumed that the whole read alignes to the reference without indels. This is often not true for longer read (e.g. generated with Roche 454 Sequencing), but saves computation time.
A list of the same length as the alnReads
argument. Each list
element is an integer vector of the same length as the target region (in
bases) and stores the coverage generated by the reads from the
corresponding list element of alnReads
.
Hans-Ulrich Klein
1 2 3 4 5 | library(Rsamtools)
bamFile = system.file("extdata", "SVDetection", "bam", "N01.bam", package="R453Plus1Toolbox")
bam = scanBam(bamFile)
region = GRanges(IRanges(start=118307205, end=118395936), seqnames=11)
cov = coverageOnTarget(bam, region)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.