Hi!
I have performed the transcript abundance quantification with RSEM and then I created the gene-level count matrices for use with DESeq2 by importing the...txi.rsem <- tximport(files, type = "rsem", txIn = FALSE, txOut = FALSE)
txi.rsem$length[txi.rsem$length == 0] <- 1
ddsTxi <- DESeqDataSetFromTximport(txi.rsem, colData = samples, design = ~ condition)
I wa…
