Description Usage Arguments Value Examples
Normally the MAlignmentsList constructor will be called by getMT.
Depending on how a generic was originally designated, the arguments to these methods can have various argument names, but all of them tend to take an MAlignmentsList as their argument.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | MAlignmentsList(...)
## S4 method for signature 'MAlignmentsList'
show(object)
## S4 method for signature 'MAlignmentsList'
fileName(object)
## S4 method for signature 'MAlignmentsList'
scanBamHeader(files)
## S4 method for signature 'MAlignmentsList'
readLength(x)
## S4 method for signature 'MAlignmentsList'
genomeLength(x)
## S4 method for signature 'MAlignmentsList'
genomeCoverage(x)
|
... |
MAlignments |
object |
an MAlignmentsList |
files |
an MAlignmentsList |
x |
an MAlignmentsList |
1 | an MAlignments
|
1 |
1 2 3 4 5 6 7 8 9 10 | library(MTseekerData)
BAMdir <- system.file("extdata", "BAMs", package="MTseekerData")
print(BAMdir)
BAMs <- paste0(BAMdir, "/", list.files(BAMdir, pattern=".bam$"))
print(BAMs)
mall <- getMT(BAMs[1]) # a xenograft
genomeLength(mall)
readLength(mall)
fileName(mall)
scanBamHeader(mall)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.