Hi, I am using the linux version of featureCounts, and I would like to count the number of reads in CDS, 5'UTR and 3'UTR. I was wondering if I should just count three times like:
featureCounts -t CDS -g gene_id -a $GTF -o counts.txt $BAM
featureCounts -t five_prime_UTR -g gene_id -a $GTF -o counts.txt $BAM
featureCounts -t three_prime_UTR -g gene_id -a $GTF -o counts.txt $BAM
Or is there a way to do all three together? Thanks!!!
Thanks so much, Wei and Gordon!!!