Description Usage Arguments Value Author(s) Examples
The function counts occurrence of the Nucleotides A,C,G,T in
bamAlign
and bamRange
objects.
Any other values will be combined counted in the last value (N).
The function returns an integer vector of length 5.
The names indicate which position contains the count value each nucleotide.
1 | countNucs(object)
|
object |
|
Integer (of length 4).
Wolfgang Kaisers
1 2 3 4 5 6 7 8 9 10 | # A) For bamAlign
align<-bamAlign("HWUSI-0001","ACCGGGTTTT","Qual/Strng","4M10N6M",refid=0,position=100)
countNucs(align)
# B) For bamRange
bam<-system.file("extdata","accepted_hits.bam",package="rbamtools")
reader<-bamReader(bam,idx=TRUE)
coords<-c(0,0,14730)
range<-bamRange(reader,coords)
countNucs(range)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.