Description Objects from the Class Slots Methods Author(s) Examples
headerLine represents the header Line segment of header section.
Objects can be created by calls of the form hl<-new("headerLine")
.
SO
:character
VN
:character
signature(x = "bamRange")
:
Retrieve textual representation of header
signature(object = "bamRange")
:
Retrieving values for given item names.
signature(object = "bamRange")
:
Setting values for given item names.
signature(.Object = "bamRange")
: Coercing of
data into a list
Wolfgang Kaisers
1 2 3 4 5 6 7 8 9 10 11 | bam<-system.file("extdata","accepted_hits.bam",package="rbamtools")
reader<-bamReader(bam)
header<-getHeader(reader)
htxt<-getHeaderText(header)
headLine<-headerLine(htxt)
getVal(headLine,"VN")
getVal(headLine,"SO")
setVal(headLine,"SO","unsorted")
l<-as.list(headLine)
txt<-getHeaderText(headLine)
bamClose(reader)
|
Loading required package: refGenome
Loading required package: doBy
Loading required package: RSQLite
[1] "1.0"
[1] "unsorted"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.