Description Usage Arguments Author(s) Examples
The function takes vectors of BAM-file names (plus accompanying names of BAM-index-files) and returns extracted data as data.frame. The data frame contains coordinates of align gaps plus a gap-quality-score (gqs) which quantifies information amount for detection of splice sites.
| 1 | readPooledBamGapDf(infiles, idxInfiles=paste(infiles, ".bai", sep=""))
 | 
| infiles | Filenames of BAM-files to be opened for data extraction. | 
| idxInfiles | Optional: Name of BAM-index files | 
Wolfgang Kaisers
| 1 2 3 4 | bam <- system.file("extdata", "accepted_hits.bam", package="rbamtools")
rpb <- readPooledBamGaps(bam)
rpdf <- readPooledBamGapDf(bam)
hist(rpdf$gqs, las=1, xlab="", main="Gap quality score")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.