Description Usage Arguments Value Author(s) See Also Examples
By default, counts()
returns the raw counts. Normalized counts, including
transcripts per million (TPM) can be accessed using the "normalized
"
argument.
1 2 |
object |
Object. |
normalized |
Logical or character indicating which normalization method to apply:
|
matrix
.
Michael Steinbaugh, Lorena Pantano
tpm()
.
tmm()
.
DESeq2::counts()
.
DESeq2::rlog()
.
DESeq2::varianceStabilizingTransformation()
.
Other Data Functions: metrics
,
tmm
, tpm
1 2 3 4 5 6 7 8 9 10 | # bcbioRNASeq ====
counts(bcb_small, normalized = FALSE) %>% summary()
counts(bcb_small, normalized = TRUE) %>% summary()
counts(bcb_small, normalized = "tpm") %>% summary()
counts(bcb_small, normalized = "tmm") %>% summary()
counts(bcb_small, normalized = "rle") %>% summary()
# log2 scale
counts(bcb_small, normalized = "rlog") %>% summary()
counts(bcb_small, normalized = "vst") %>% summary()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.