run DEG module in limma, DESeq2 and edgeR
deg_run(
counts_data,
group_list,
test_group = "T",
control_group = "C",
dir,
parallel = FALSE
)
a counts data frame of rows in genes and columns in samples
a list ordered by samples in counts_data
the name of the numerator level for the fold change (Test group)
the name of the denominator level for the fold change (Control group)
a directory to store results
if FALSE, no parallelization. if TRUE, parallel execution using BiocParallel
a csv file and a DEG_container ob
if (FALSE) {
deg_run(counts_input,group_list,test_group = "T", control_group = "C",dir = tempdir())
}