View source: R/simulateRnaSeqData.R
simulateRnaSeqData | R Documentation |
Simulated expression data of an RNA-seq experiment.
simulateRnaSeqData(
output = c("matrix", "RangedSummarizedExperiment"),
n = 1000,
m = 6,
seed = 0L,
...
)
output |
output type |
n |
number of genes |
m |
number of samples |
seed |
a single integer value specifying the random number generator seed |
... |
arguments passed to |
The count table is generated using the
makeExampleDESeqDataSet
method from the DESeq2
package.
Depending on the output
setting a matrix or an
RangedSummarizedExperiment
object.
Andrzej Oleś <andrzej.oles@gmail.com>, 2016-2023
simulateNormFactors
## count data matrix
mx = simulateRnaSeqData()
head(mx)
## return an RangedSummarizedExperiment object
se = simulateRnaSeqData(output = "RangedSummarizedExperiment")
se
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.