Hi, could anyone explain why there is an inverse relation between the percentage of mitochondrial (-mt) genes of a cell and its expression of ribosomal(Rp[s, l]) genes? I have been doing analysis of single cell RNA seq data and I noticed that in general that cells with a high ratio or percentage of Rp[s, l] genes tend to have a low ratio/pecentage of -mt genes.
Could there be any biological explanation for this? See code and figure below:
ggplot(data = metadata, aes(x = mitoRatio, y = riboRatio)) +
geom_point(color='blue') +
ylab("ratio of Rp[s, l] genes")+
xlab("ratio of -mt genes")+
geom_smooth(method = "lm", se = FALSE)+
theme(aspect.ratio = 1)

1 answer
Assuming that:
- mitoRatio = # of mitochondrial genes observed/total number of genes observed
- riboRatio = # of rRNA genes observed/total number of genes observed (maybe you also included ribosomal proteins to this ratio)
If you go to the right extreme of the x-axis, you reach more than 75 % of mitochondrial genes (mitochondrial genes are almost exclusively observed). There are only 2 rRNA genes out of the 37 mt genes. Since there are only 37 mt genes, it is much more likely to observe most of them in a scRNA experiment. The expected riboRatio is expected to be around 5.4 %. On the left extreme, almost all genes observed are nuclear. Though there are many more nuclear genes compared to ribosomal genes, the very high expression of rRNAs makes them much more more likely to be observed compared to other genes that are either not expressed or residually expressed (hence, achieving on average larger riboRatios than mitochondrial read-enriched cells). The continuous variation of the ratio of mt to nuclear reads could give rise to a spurious negative correlation between mitoRatio and riboRatio. Even if the definitions assumed here are not correct, I am quite certain that the observed relationship derives from the enrichment in mtRNA reads.
Log in to answer this question.
Can you elaborate:
Rp[s,l])?"^mt"?It is still unclear what exactly
mitoRatioandriboRatio. Is this correlation significant (cor.test)?Edit: It is the full link you have to paste into the image putton field, I did that now, please stop editing.
Thanks for the correction. The riboRatio and mitoRatio correspond to the percentages of reads that map to ribosomal protein genes and mitochondrial genes respectively. But I chose to represent them as ratios.
The equation of the line is y = 0.0588 - 0.0603x, r^2=0.168 and the pvalue from the cortest result shows significance.