arnavmdas / epiphany

MIT License
10 stars 2 forks source link

value calculation in convert_hic_norm.py #6

Open DieTANG opened 2 months ago

DieTANG commented 2 months ago

Hi Rui,

I have a question regarding your convert_hic_norm.py script for data preparation. In line 66-68,

value = float(line_split[10] / (line_split[10] + 1e-10))

Seems like the value will be close to 1 or 0 all the time, since it is just to divide by the line_split[10] itself?

Thank you. Dié