Entering edit mode
6.5 years ago
Arindam Ghosh
▴
530
Which of the three modes -- union, intersection-strict, intersection-nonempty-- is suitable for RNAseq data to be used for differential gene expression?
There is no "more suitable" one, all of them will do depending on what you want to achieve! I usually use union but you should check, biologically speaking, which one fits more your system.
Go with default, but I would suggest to use FeatureCounts instead of HTSeq. or Salmon.
Why? Any explanation for not prefering HTSeq.
featureCounts
is:Also better at assigning PE reads compared to HTSeq.
Any room for the pseudo-aligners here, i.e., to avoid the necessity to produce a BAM in the first place? - Kallisto, Salmon, et al.
If you use STAR as mapper, you can specify the option
--quantMode GeneCounts
and STAR will output read counts equivalent tohtseq --union
option. Thus you can skip counting step in your pipeline and save time.