Converts edgeR topTags results to MetaVolcanoR format
prepare_edger(edger_result, gene_column = NULL)A data.frame with columns: Symbol, Log2FC, pvalue, CI.L, CI.R
if (FALSE) { # \dontrun{
library(edgeR)
y <- DGEList(counts = counts, group = group)
y <- calcNormFactors(y)
design <- model.matrix(~group)
y <- estimateDisp(y, design)
fit <- glmFit(y, design)
lrt <- glmLRT(fit)
top <- topTags(lrt, n = Inf)
# Prepare for MetaVolcanoR
deg_table <- prepare_edger(top$table)
} # }