Skip to content

Commit 6a6d678

Browse files
committed
to float then int
1 parent 6d82c60 commit 6a6d678

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/prep-mutect2-qc/prep-mutect2-qc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def get_callable_stats_extra_info(file_path):
6565
if row.startswith('callable'):
6666
cols = row.strip().split()
6767
extra_info.update({
68-
'callable': int(cols[1])
68+
'callable': int(float(cols[1]))
6969
})
7070
break
7171

0 commit comments

Comments
 (0)