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 | MAlignmentsList(...)
## S4 method for signature 'MAlignmentsList'
genomeCoverage(x)
## S4 method for signature 'MAlignmentsList'
readLength(x)
## S4 method for signature 'MAlignmentsList'
fileName(object)
## S4 method for signature 'MAlignmentsList'
Summary(x)
## S4 method for signature 'MAlignmentsList'
show(object)
|
... |
MAlignments |
x |
an MAlignmentsList |
object |
an MAlignmentsList |
an MAlignments
various objects, as appropriate to the method
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)
targets <- data.frame(BAM=BAMs, stringsAsFactors=FALSE)
rownames(targets) <- sapply(strsplit(basename(BAMs), "\\."), `[`, 1)
mall <- getMT(targets)
class(mall)
show(mall)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.