Skip to content

Commit

Permalink
Fix bug on parsing exponent qual
Browse files Browse the repository at this point in the history
  • Loading branch information
chaklim committed Mar 31, 2020
1 parent 3e76b4c commit cb16485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clair/post_processing/overlap_variant.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def variant_from(variant_row):
alternate_base = alternates[0]
alternate_base_multi = None if len(alternates) == 1 else alternates[1]

quality_score = int(columns[5])
quality_score = int(float(columns[5]))

last_column = columns[-1]
last_columns = last_column.split(":")
Expand Down

0 comments on commit cb16485

Please sign in to comment.