RNAseq: What is the difference between the units log2 (tpm + 0.001) and log2 (norm_count + 1)
0
0
Entering edit mode
2.9 years ago
muet-10 • 0

Good morning everyone I am new to RNAseq, and I have some doubts, I hope some of you can guide me.

  1. What is the difference between the units log2 (tpm + 0.001) and log2 (norm_count + 1). I was checking and it seems that both units indicate that the data is normalized, but the difference is not clear to me. Can you help me, please.

  2. The IsoPct is a unit that represents the percentage of an isoform at the level of RNAseq. Some of you know how it is calculated and how it is interpreted.

  3. The sum of the isoforms (expressed as a percentage: IsoPct), of a gene, represents the expression of a gene in 100%?

NOTE: If you can share an article with me, I would greatly appreciate it.

IsoPct units RNAseq • 4.2k views
ADD COMMENT
0
Entering edit mode

TPM is a known metric. You should be able to find some YouTube videos from StatQuest explaining it, and Renesh Bedre's blog post is also quite helpful for beginners. There is no metric called norm_count - it is probably something a team uses internally. You'll need to read their paper/consult their website to understand that metric.

Read RSEM (or other quantification algorithm) papers to understand IsoPct. That should also answer your question #3, but intuitively, it makes sense that SUM(IsoPct) across transcripts for a particular gene would be 100%.

ADD REPLY
0
Entering edit mode

thank you very much for your help

ADD REPLY
0
Entering edit mode
  1. The log of 0 is minus infinity (-Inf in R). A way to avoid dealing with it, is to add a small number to your values, so the log will have a value (anything but -Inf). Adding 0.001, 1, 0.5, doesn't really matter and it is mainly driven by preference. I personally prefer to use +1, as I don't like to see negative values for the expression of genes.

  2. I cannot help here.. :(

  3. The total expression of a gene should be 100%. From the RSEM documentation: IsoPct stands for isoform percentage. It is the percentage of this transcript's abandunce over its parent gene's abandunce. If its parent gene has only one isoform or the gene information is not provided, this field will be set to 100.

ADD REPLY
0
Entering edit mode

Your comment on #1 is irrelevant. Given that you've only added a couple of sentences from RSEM docs addressing one of OP's questions and cheekily (emoji are not really professional language) point to not addressing another, your post belongs better as a comment than as an answer and I am moving it to one.

ADD REPLY
0
Entering edit mode

I could be wrong, but the question was not on TPM vs norm_count, but on log2 (tpm + 0.001) and log2 (norm_count + 1). So it is relevant to me. Maybe not a definitive answer, but still relevant. I also don't see the problem in referencing a source that gives the exact answer to the question. I replaced the smiley face with a sad one... do you prefer it?

ADD REPLY
0
Entering edit mode

That is one hell of a technicality there. Should we also differentiate between ASCII values of t vs n - technically, that counts too. Emoji are unprofessional, period; doesn't matter which one you use. :D is definitely on the lesser acceptable ones as it reads as "Haha, I cannot answer that one" - nothing funny about that.

ADD REPLY
0
Entering edit mode

Using any value but 1 as a pseudocount doesn't make intuitive sense to me. Like you say, most people wish to retain 0s (and avoid negative values) on log transformation and adding 1 makes a lot more sense. Unless the TPM values are in a pretty narrow range and adding 1 would make a LOT of difference, adding 0.001 is asking for negative values on log transformation.

ADD REPLY
0
Entering edit mode

As I said it is personal. Adding +0001 makes sense because you are closer to the actual value, than +1. Just to give you an example, QIAGEN uses +0.02 (if I recall correctly) in some of their bioinformatics tools to record gene expression values.

ADD REPLY
0
Entering edit mode

The 0.02 looks more like a signature than a reasoned value. The choice of pseudocount depends on whether or not a negative value is acceptable after log transformation, so you're right, it is personal preference.

ADD REPLY
0
Entering edit mode

I'm using data from XENA BOWSER, from the study "The Cancer Genome Atlas (TCGA). The values come in log2 (tpm + 0.001), so there are negative values, which I can do to convert it to positive values.

ADD REPLY
1
Entering edit mode

If you really want to work with positive values, and you are sure the data is only log transformed, you can convert the values back to the original TPM values: value = log2(TPM + 0.001), which means 2^value = (TPM + 0.001). Once your have TPM, you can re-log them as you please.

ADD REPLY
0
Entering edit mode

If I add +1 to my values, it is enough for the expression of my gene to be positive or it is necessary to do another mathematical calculation.

ADD REPLY
0
Entering edit mode

Don't add or subtract anything without understanding (in full detail) how it impacts the data. You're adding log2(TPM+0.001)=1 here, so you're adding 1.999 TPM to everything. Given than TPM is a fraction metric, adding a value to it breaks it.

ADD REPLY
0
Entering edit mode

Thank you very much for your help

ADD REPLY

Login before adding your answer.

Traffic: 2674 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6