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
Edit 14/03: verified that this also occurs in version 3.0.4
Description of the issue:
When I add a header including a description containing escaped double quotes, sometimes the "escape slash" goes missing, resulting in a invalid VCF file.
Thanks for the bug report. Looks like the internal representation is correct ("""TEST""), but it gets serialized as ""TEST\"" by VCFHeaderLine.escapeQuotes.
Edit 14/03: verified that this also occurs in version 3.0.4
Description of the issue:
When I add a header including a description containing escaped double quotes, sometimes the "escape slash" goes missing, resulting in a invalid VCF file.
Your environment:
Steps to reproduce
Expected behaviour
A VCF file is written with an INFO header:
##FORMAT=<ID=TEST,Number=A,Type=String,Description="\"TEST\"">
Actual behaviour
A VCF file is written with an INFO header:
##FORMAT=<ID=TEST,Number=A,Type=String,Description=""TEST\"">
The slash for the first escaped double quote is missing
The text was updated successfully, but these errors were encountered: