tpm | R Documentation |
Transcripts per million
tpm(object, ...)
## S4 method for signature 'SummarizedExperiment'
tpm(object)
object |
Object. |
... |
Additional arguments. |
Both gene- and transcript-level counts are supported, as long as they were imported using a tximport caller (e.g. salmon, kallisto).
matrix
.
Updated 2021-02-03.
se <- SummarizedExperiment::SummarizedExperiment(
assays = list(
tpm = matrix(
data = seq_len(4L),
nrow = 2L,
ncol = 2L,
byrow = TRUE
)
)
)
x <- tpm(se)
class(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.