Description Usage Arguments Value Examples
This is a pipeline function performing the DEA starting from the data normalization. Users can select the normalization method and DE method by themselves.
1 2 3 4 5 6 7 8 | pip.norm.DE(
raw,
groups,
norm.method,
QN_filter = FALSE,
DE.method = "DE.voom",
Pval = 0.01
)
|
raw |
raw count data in the format of data frame or matrix, with columns for samples and raws for genes. |
groups |
vector of characters indicating the group for each sample (only 2 groups allowed). |
norm.method |
the method for normalization selected from |
QN_filter |
whether the filtering is performed if |
DE.method |
the method for differential expression analysis from
|
Pval |
p-value for identifying DE genes, default to be 0.01 |
list, containing id.list
(names of DE genes), p.val
,
and log2.FC
for a single normalization. If method="all", a list of
of DEAs is returned for the raw data normalized with each supported
normaliztion methods vontaining containing id.list
(names of DE genes),
p.val
, and log2.FC
each.
1 | res <- pip.norm.DE(data.test, data.group, "norm.TMM")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.