compare two vcf files

compare two vcf files

1

Hi.
I have a problem
I want to compare the rs numbers in two vcf files.
so
I want to check which of the Rs numbers are in the top 10 percent.
I don’t know what to do. Can you help me if I have tools or if I have to look at the blog?


vcf

• 43 views

comm -12 <(bcftools query -f '%IDn' in1.vcf | sort |uniq)  <(bcftools query -f '%IDn' in2.vcf | sort |uniq) 


Login
before adding your answer.

Read more here: Source link