@Istvan Albert I just read your answer to this question which is interesting , so you average the biological replicate ? then transform them then calculate fold change ? I tried different ways and each gives different answer
for example one way
> log2(34)
[1] 5.087463
> log2(33)
[1] 5.044394
> 5.087463+5.044394/2
[1] 7.60966
> log2(164)
[1] 7.357552
> log2(84)
[1] 6.392317
> 7.357552+6.392317/2
[1] 10.55371
> log2(10.55371/7.60966)
[1] **0.4718463**
The second way
> a = (34 + 33) / 2
> b = (164 + 84) / 2
> log2(b/a)
[1] 1.888107
which one is really the right way to do when there is replicate or biological replicate
First thank you for replying! I get how the ratio of both mean values was calculated but I still couldn't figure out how they assessed a fold change of 4,5 :/
(I moved this to a comment, because it was not a new answer. I can only move it as a comment to the top level.)
But then as for a better help, it is not clear to me what the right answer is.
I got an error when I tried to post it as a comment