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
We want this:
featureCounts -t CDS,
five_prime_UTR,three_prime_UTR -g gene_id -a $GTF -o counts.txt $BAM
Surely this would be easy to fix? Instead of passing a single string to the -t argument and filtering by that, pass a character vector/list of strings and filter for inclusion?
I appreciate that the gff-fix workaround you propose in the above support issue works in principle, but it would be far better to add the capability to the software.
Thank you for making a great piece of software and for sharing it with the community! It is fast, effective, and well-documented. I'm a new user.
Best wishes,
Edward Wallace
https://ewallace.github.io/