-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
We've seen an error in format_pileup.py where a KeyError can be triggered here:
| freqs[b] += 1 |
Traceback (most recent call last):
File "ncov-tools/workflow/rules/../scripts/format_pileup.py", line 23, in <module>
freqs[b] += 1
KeyError: 'N'
...because the dict isn't initialized with an N key:
| freqs = {'A': 0, 'T': 0, 'G': 0, 'C': 0, '-': 0, 'R': 0 } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels