BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("DESeq2")
library('DESeq2')
library('RColorBrewer')
countFilePath = './count-1.txt'
countData = read.table(file = countFilePath, header...FALSE, sep = '\t', row.names = 1,stringsAsFactors=FALSE)
##make first row the colname
colnames(countData) <- countData[1,]
countData <- countData...colFilePath …
updated 3.7 years ago • salehe.ghasempur