Description Objects from the Class Slots Methods Author(s) Examples
The bamGapList class represents a list of Alignment gap (N-items in Cigar-data) sites . For each gap-site, left and right start and end positions as well as the gap-length are reported. Numbers of aligns supporting this site, number of left-sided start positions (<= 8) and the sum of overlapping nucleotides on the left side are given.
Objects can be created by calls of the form siteList(reader,coords))
.
list
:"externalptr"
. Point to double linked list struct.
refdata
:"data.frame"
. Contains bamHeader like data for stored aligns.
signature(x = "bamGapList")
: Returns number of site-items in list.
signature(from = "bamGapList", to = "data.frame")
: Coercion of bamGapList to data.frame.
signature("bamGapList","data.frame")
: Coercion of bamGapList to data.frame.
signature(object = "bamGapList")
: Prints a short message with some summarizing data.
signature(object = "bamGapList")
: Returns number of aligns in specified Range.
signature(object = "bamGapList")
: Returns number of align gaps in specified Range.
Wolfgang Kaisers
1 2 3 4 5 6 7 8 9 10 11 12 | library(rbamtools)
bam<-system.file("extdata", "accepted_hits.bam", package="rbamtools")
reader<-bamReader(bam,idx=TRUE)
bsl<-bamGapList(reader)
bsl
size(bsl)
nAligns(bsl)
nAlignGaps(bsl)
summary(bsl)
dfr<-as.data.frame(bsl)
head(dfr)
bamClose(reader)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.