Description Usage Arguments Value See Also Examples
Access slots of MmapprData
object.
1 2 3 4 5 6 7 8 9 10 11 | ## S4 method for signature 'MmapprData'
param(obj)
## S4 method for signature 'MmapprData'
distance(obj)
## S4 method for signature 'MmapprData'
peaks(obj)
## S4 method for signature 'MmapprData'
candidates(obj)
|
obj |
Desired |
Desired attribute.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | if (requireNamespace('MMAPPR2data', quietly=TRUE)
& all(Sys.which(c("samtools", "vep")) != "")) {
mmappr_param <- MmapprParam(refFasta = MMAPPR2data::goldenFasta(),
wtFiles = MMAPPR2data::exampleWTbam(),
mutFiles = MMAPPR2data::exampleMutBam(),
species = "danio_rerio",
outputFolder = tempOutputFolder())
md <- new('MmapprData', param = mmappr_param)
param(md)
distance(md)
peaks(md)
candidates(md)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.