Skip to content

Commit 6d82c60

Browse files
committed
made callable stats count int
1 parent eb588ca commit 6d82c60

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': float(cols[1])
68+
'callable': int(cols[1])
6969
})
7070
break
7171

0 commit comments

Comments
 (0)