pip.norm.DE.RdThis is a pipeline function performing the DEA starting from the data normalization. Users can select the normalization method and DE method by themselves.
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.
res <- pip.norm.DE(data.test, data.group, "norm.TMM")