We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bd93f16 + f152159 commit d997a84Copy full SHA for d997a84
CHANGELOG.md
@@ -10,5 +10,8 @@ Try to use the following format:
10
11
## [x.x.x]
12
13
+### Changed
14
+- Adds support for escaped characters in FORMAT description header strings
15
+
16
### Fixed
17
- Documentation about cli options `strict` and `phased`
genmod/vcf_tools/header_parser.py
@@ -59,8 +59,8 @@ def __init__(self):
59
>''', re.VERBOSE)
60
self.filter_pattern = re.compile(r'''\#\#FILTER=<
61
ID=(?P<id>[^,]+),
62
- Description="(?P<desc>[^"]*)"
63
- >''', re.VERBOSE)
+ Description="(?P<desc>.+">$)
+ ''', re.VERBOSE)
64
self.contig_pattern = re.compile(r'''\#\#contig=<
65
ID=(?P<id>[^,]+)
66
.*
0 commit comments