Right now, the result objects from Rsubread::featureCounts
can easily read into most DE Analysis packages (at least for DESeq2
and edgeR
, which should cover most use cases). However, at this time, it appears to me that there is native support in parsing the output file(s) from the command-line version of featureCounts
.
While I understand many of us would rather use the Rsubread
version, I can still foresee usage cases where the command-line version is desirable (for example, when using a job scheduler--otherwise a wrapper Rscript is needed). So I think either one of these would be desirable:
Rsubread
adds a function to read the output file intoRsubread::featureCounts
objects. I suppose the code already exists inRsubread::featureCounts
? Or,- Adding an extra
type
totximport::tximport
to read the same files into atximport
object.
I have no preference over these two approaches, but maybe some other user may chime in on this.