-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Malformed VCF files #43
Comments
Please provide a concrete example(s). I would opt for a single script (e.g., in R) that performs both steps (VCF->BEDPE-> VCF). We could add |
We follow the VCF specification version v4.3. The example here is the htz-sv.vcf file generated with sv-gen and used as test data in sv-channels. VCF headerhtz-sv.vcf
It should be:
SV callsDELhtz-sv
It should be:
INShtz-sv
It should be:
to complete: INVhtz-sv
It should be:
DUP:TANDEMhtz-sv
It should be:
BND (breakend notation for TRA)htz-sv
It should be:
The positions should be ordered first by chromosome (as listed in the ##contig list in the header) and then by position.
We could opt to encode all SVs in the BND notation as it is done in GRIDSS. |
The latter script refers to VCF v4.2 (but v4.3 in the original script).
Good point. Could you add a reference to the code snippet that does this? |
SURVIVOR simSV generates a malformed VCF file, in particular for translocations (TRA).
We need to include first a VCF->BEDPE conversion with this script and a BEDPE->VCF conversion with this script.
The text was updated successfully, but these errors were encountered: