set_NOISeq | R Documentation |
Set the parameters for NOISeq differential abundance detection method.
set_NOISeq(
assay_name = "counts",
pseudo_count = FALSE,
contrast = NULL,
norm = c("rpkm", "uqua", "tmm", "n"),
expand = TRUE
)
assay_name |
the name of the assay to extract from the
TreeSummarizedExperiment object (default |
pseudo_count |
add 1 to all counts if TRUE (default
|
contrast |
character vector with exactly, three elements: a string indicating the name of factor whose levels are the conditions to be compared, the name of the level of interest, and the name of the other level. |
norm |
name of the normalization method to use in the differential
abundance analysis. Choose between the native edgeR normalization methods,
such as |
expand |
logical, if TRUE create all combinations of input parameters
(default |
A named list containing the set of parameters for DA_NOISeq
method.
DA_NOISeq
# Set a basic combination of parameters for NOISeq with 'tmm' normalization
base_NOISeq <- set_NOISeq(pseudo_count = FALSE, norm = "tmm",
contrast = c("group", "B", "A"), expand = FALSE)
# try many normalizations
many_NOISeq <- set_NOISeq(pseudo_count = FALSE,
norm = c("tmm", "uqua", "rpkm", "n"), contrast = c("group", "B", "A"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.