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
cnvpytor -root file.pytor -view 1000
set print_filename output.vcf
print calls
The resulting VCF is invalid in at least three ways:
The header line for GT contains a trailing ; that should not be there:
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype">;
##FORMAT=<ID=CN,Number=1,Type=Integer,Description="Copy number genotype for imprecise events">
The REF column is all missing ., but that is not permitted in VCF v4.1 (use N instead).
The CN FORMAT field is defined to be Integer, but some records are coming out with floating-point values in that field:
We fixed both the 1 and 3 point previously. This is the current vcf header for GT and CN tag.
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype">
##FORMAT=<ID=CN,Number=1,Type=Float,Description="Copy number genotype for imprecise events">
The REF column is all missing ., but that is not permitted in VCF v4.1 (use N instead).
Thanks for pointing this out. I updated the ref column to N
When I do
The resulting VCF is invalid in at least three ways:
GT
contains a trailing;
that should not be there:The REF column is all missing
.
, but that is not permitted in VCF v4.1 (useN
instead).The
CN
FORMAT field is defined to be Integer, but some records are coming out with floating-point values in that field:All of these I can manually work around by correcting the problems with
sed
etc., but it would be nice to have these fixed in the tool itself.The text was updated successfully, but these errors were encountered: