Turning transcript estimate to gene level estimates
Hello All,
I've used the featureCounts program on my bam files to estimate the transcript counts(below is the code snippet).
Since a single gene can have multiple transcripts associated with it. What would be the best way to calculate a gene level estimate? Can adding gene specific transcript counts used as a gene level estimate?
fcounts <- featureCounts("myTest.bam",
annot.inbuilt='hg38',
annot.ext = "Homo_sapiens.GRCh38.83.gtf",
isGTFAnnotationFile = TRUE, isPairedEnd = TRUE,
GTF.featureType="exon",GTF.attrType="gene_id",useMetaFeatures=TRUE)
write.csv(fcounts$counts,file='counts.csv')
• 1,422 views
•
link
1 answer
You've quantified genes, not transcripts, so you already have the values you want.
• 1 views
•
link
Log in to answer this question.
Are you sure you estimated transcript counts? I don't use featureCounts usually, but seems to me this command will return gene counts.