We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bfc3f4 commit 2fb8abfCopy full SHA for 2fb8abf
artic/vcf_filter.py
@@ -7,6 +7,12 @@ def in_frame(v):
7
print("This code does not support multiple genotypes!")
8
raise SystemExit
9
ref = v.REF
10
+
11
+ if not v.ALT: # No ALT alleles (e.g. a deletion)
12
+ if len(ref) % 3 == 0:
13
+ return True
14
+ return False
15
16
alt = v.ALT[0]
17
bases = len(alt) - len(ref)
18
if not bases:
pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
[project]
name = "artic"
-version = "1.8.4"
+version = "1.8.5"
authors = [
{ name = "Nick Loman", email = "[email protected]" },
]
0 commit comments