Sounds like you have unpaired data and just want to filter for variants that are only called in tumour?
I would merge them all together (bcftools merge
), or just merge them into their respective tumour and normal groupings; so, you would have 2 final VCFs: tumour.vcf and normal.vcf. I would then create a unique key that identifiers each variant found in each group (CHR:POS:REF:ALT
), and then cross-compare with a simple script like awk. You could also set the ID field to be this unique key.
Another way is to merge all files together and then use SnpSift CaseControl, but only checking the allele tallies at the end.
Kevin
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.