qtex,ERVmapParam-method {atena} | R Documentation |
The qtex()
method quantifies transposable element expression.
## S4 method for signature 'ERVmapParam' qtex( x, phenodata = NULL, mode = ovUnion, yieldSize = 1000000L, verbose = 1, BPPARAM = SerialParam(progressbar = ifelse(verbose == 1, TRUE, FALSE)) ) ## S4 method for signature 'TEtranscriptsParam' qtex( x, phenodata = NULL, mode = ovUnion, yieldSize = 1000000L, BPPARAM = SerialParam(progressbar = TRUE) ) ## S4 method for signature 'TelescopeParam' qtex( x, phenodata = NULL, mode = ovUnion, yieldSize = 1000000L, BPPARAM = SerialParam(progressbar = TRUE) )
x |
An
|
phenodata |
A |
mode |
One of the pre-defined overlapping methods such as
|
yieldSize |
Field inherited from |
verbose |
(Default 1). When |
BPPARAM |
An object of a BiocParallelParam subclass
to configure the parallel execution of the code. By default,
a SerialParam object is used, which does not use
any parallelization, with the flag |
Giving some AtenaParam
object sub-class as input, the
qtex()
method quantifies the expression of transposable
elements (TEs). The particular algorithm to perform the
quantification will be selected depending on the specific
sub-class of input AtenaParam
object, see argument
x
above.
A SummarizedExperiment object.
Tokuyama M et al. ERVmap analysis reveals genome-wide transcription of human endogenous retroviruses. PNAS, 115(50):12565-12572, 2018. https://doi.org/10.1073/pnas.1814589115
Bendall ML et al. Telescope: characterization of the retrotranscriptome by accurate estimation of transposable element expression. PLOS Computational Biology, 15:e1006453, 2019. https://doi.org/10.1371/journal.pcbi.1006453
bamfiles <- list.files(system.file("extdata", package="atena"), pattern="*.bam", full.names=TRUE) TE_annot <- readRDS(file = system.file("extdata", "Top28TEs.rds", package="atena")) gene_annot <- readRDS(file = system.file("extdata", "Top50genes.rds", package="atena")) tspar <- TelescopeParam(bfl=bamfiles, teFeatures=TE_annot, geneFeatures = gene_annot, singleEnd = TRUE, ignoreStrand=TRUE) tsSE <- qtex(tspar)