rename_col {MetaVolcanoR} | R Documentation |
This function rename the columns of the merged inputs
rename_col(diffexp, genecol)
diffexp |
list of data.frame/data.table (s) with DE results where lines are genes |
genecol |
the column name of the geneID or gene name variable <string> |
data.tabledata.frame
with new colnames
data(diffexplist) lapply(diffexplist, colnames) diffexp <- rename_col(diffexplist, "Symbol") lapply(diffexp, colnames)