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
I noticed that in the case of annotated multiallelic VCF where annotation for each alternative is stored in the INFO field, variant.INFO.get("annotation") would only pick the first occurrence.
Example:
1 123 A T,TA ... annotation:0.5.. annotation:0.1
variant.INFO.get("annotation") would return only 0.5 instead of [0.5, 0.1]
Best
The text was updated successfully, but these errors were encountered:
Hi, can you show the actual line from the VCF?
the INFO field is key=value, so you can't have the same key twice.
Format fields are separated by : as you have shown above.
Hello,
I noticed that in the case of annotated multiallelic VCF where annotation for each alternative is stored in the INFO field,
variant.INFO.get("annotation")
would only pick the first occurrence.Example:
variant.INFO.get("annotation")
would return only 0.5 instead of [0.5, 0.1]Best
The text was updated successfully, but these errors were encountered: