Skip to content

Commit

Permalink
Merge branch 'fix-qual-float-issue' into 'dev'
Browse files Browse the repository at this point in the history
Fix QUAL float issue

See merge request epi2melabs/workflow-containers/wf-artic!27
  • Loading branch information
Thomas Rich committed May 18, 2021
2 parents 7800f16 + dcfaa11 commit acd495b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/genotype_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ def extract_calls(df, chrom, pos, ref):
if df_calls.empty:
return []

df_calls[QUAL] = pd.to_numeric(df_calls[QUAL])

calls_list = []
for call in df_calls.to_dict('records'):
calls_list.append({
Expand Down

0 comments on commit acd495b

Please sign in to comment.