View source: R/simulateNormFactors.R
simulateNormFactors | R Documentation |
Simulate gene-specific normalization factors for each sample of an RNA-seq experiment.
simulateNormFactors(n = 1000L, m = 6L, seed = 0L, ...)
n |
number of genes |
m |
number of samples |
seed |
a single integer value specifying the random number generator seed |
... |
arguments passed to |
A matrix with n
rows and m
columns containing the
normalization factors.
Andrzej Oleś <andrzej.oles@gmail.com>, 2016-2023
simulateRnaSeqData
require("DESeq2")
## normalization factors
se = simulateRnaSeqData(output = "RangedSummarizedExperiment")
dds = DESeqDataSet(se, design = ~ condition)
normalizationFactors(dds) = simulateNormFactors()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.