Dear developers,
I encounter a issue when I run the program. The command:
python3 /home/yilei/biosoftware/DANPOS3/danpos.py dtriple 28825_WTmono1_S7_L999_R.final.bam:28827_R27mono1_S9_L999_R.final.bam
I found the line 289 in the wig.py is the height=int(m+0.5). The really problem of the above is the m maybe "NaN". Therefore, I changed the height=int(m+0.5) into height=int(0.5), and it can be run totally.
But I don't know if this modification would be introduce potential effect for the results. So, could you please give some suggestions?
Best,
Andy