DeTiN is designed to measure tumor-in-normal contamination and improve somatic variant detection sensitivity when using a contaminated matched control.
BSD 3-Clause "New" or "Revised" License
49
stars
21
forks
source link
More robustly handle sample names in indel VCF headers #32
The VCF spec demands that the samples' column names match entries in the header (e.g. if ##normal_sample=MY_NORMAL is present in the header, then the column for the normal should be named MY_NORMAL.)
Previously, deTiN would break on otherwise valid indel VCFs. This fixes that. As a bonus, the deTiN output should be easier to merge with the input VCF, since the VCF column names are preserved.
The VCF spec demands that the samples' column names match entries in the header (e.g. if
##normal_sample=MY_NORMAL
is present in the header, then the column for the normal should be namedMY_NORMAL
.)Previously, deTiN would break on otherwise valid indel VCFs. This fixes that. As a bonus, the deTiN output should be easier to merge with the input VCF, since the VCF column names are preserved.