flagLowExpCTSS | R Documentation |
Flag CTSSes for that do not pass an expression threshold in at least a given number of samples. This is typically used to ignore CTSSes that have been seen only once in a single sample, as they can be considered to not be reproduced.
flagLowExpCTSS(
object,
threshold = 1,
nrPassThreshold = 1,
thresholdIsTpm = TRUE
)
## S4 method for signature 'CAGEr'
flagLowExpCTSS(
object,
threshold = 1,
nrPassThreshold = 1,
thresholdIsTpm = TRUE
)
## S4 method for signature 'RangedSummarizedExperiment'
flagLowExpCTSS(
object,
threshold = 1,
nrPassThreshold = 1,
thresholdIsTpm = TRUE
)
## S4 method for signature 'DataFrame'
flagLowExpCTSS(
object,
threshold = 1,
nrPassThreshold = 1,
thresholdIsTpm = TRUE
)
## S4 method for signature 'matrix'
flagLowExpCTSS(
object,
threshold = 1,
nrPassThreshold = 1,
thresholdIsTpm = TRUE
)
filterLowExpCTSS(
object,
threshold = 1,
nrPassThreshold = 1,
thresholdIsTpm = TRUE
)
## S4 method for signature 'CAGEr'
filterLowExpCTSS(
object,
threshold = 1,
nrPassThreshold = 1,
thresholdIsTpm = TRUE
)
object |
An object from the CAGEr package that contains expression values for multiple samples. |
threshold |
Flag CTSSs with signal |
nrPassThreshold |
Only flag CTSSs when signal is below threshold in at
least |
thresholdIsTpm |
Logical, is threshold raw tag count value ( |
flagLowExpCTSS
returns a Rle
vector where TRUE
indicates the
index of a CTSS that passes the filter.
filterLowExpCTSS
returns the CAGEr
object where the output of
flagLowExpCTSS
was stored internally.
Other CAGEr filter functions:
filteredCTSSidx()
,
flagByUpstreamSequences()
flagLowExpCTSS(exampleCAGEexp, threshold = 100, nrPassThreshold = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.