You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Some case imports fail with the error message intron_variant in the post import step when computing the variant stats after the seqvar import.
The text was updated successfully, but these errors were encountered:
>>> gather_variant_stats(s)
Traceback (most recent call last):
File "/opt/pyenv/versions/3.10.15/lib/python3.10/code.py", line 90, in runcode
exec(code, self.locals)
File "<console>", line 1, in <module>
File "/usr/src/app/variants/variant_stats.py", line 79, in gather_variant_stats
effect_counts[sample][effect] += small_var.genotype[sample]["gt"].count("1")
KeyError: 'intron_variant'
This is the elaborated error message. The effect intron_variant is known by the sequence ontology and partly by varfish, however the stat computation does not know this variant (yet)
Describe the bug
Some case imports fail with the error message
intron_variant
in the post import step when computing the variant stats after the seqvar import.The text was updated successfully, but these errors were encountered: