Thank you! That makes total sense to me know. I tried to exemplify what you have explained and now everything makes sense. For instance, let's assume that tumor data is 60x and normal 30x. As a result, for a region with no aberration (i.e. copy number=2) we expect log_2 ratio to be 0. However, in this case, we get 1 (pointing to amplification where actually there is none) since log_2(60/30) = log_2(2) + log_2(1) = 1. This is unwanted and needs to be corrected.
For the use case of median, I imagined a case where both samples are 30x and all chromosomes except let's say chr9 are normal (i.e. having no alteration) and the entire chr9 has gained 2 copies resulting in log_2 ratio of 1 for chr9. this is a genuine signal and we do not want to get rid of it let's say by averaging over the number of all chromosomes; and that is why median comes to rescue. Is that right?
Could you please provide reference (you are saying "need to do such normalization", where are you finding this information)?
I am reading a Python code and what I have written here is a summary of I what I have understood from the code.