Entering edit mode
4.5 years ago
shubhamkumbhar420
▴
40
Hey guys,
I have two VCF files, Now I want variants from file1 that are NOT present in file2. How can I do this?
Hey guys,
I have two VCF files, Now I want variants from file1 that are NOT present in file2. How can I do this?
bcftools isec -n~10 f1.vcf.gz f2.vcf.gz
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thanks for the help! Is there a way I can get output in vcf file containing all fields like chr position ID ref alt filter and INFO column. The above command only gives chr position ref and alt.
bcftools query