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)
Can you elaborate:
Rp[s,l]
)?"^mt"
?It is still unclear what exactly
mitoRatio
andriboRatio
. 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.