Is there any GUI tool which can compare 200 VCFs and show different SNPs between all the samples?
1
1
Entering edit mode
7.9 years ago
hrenchert747 ▴ 50

Is there any GUI tool which can compare 200 VCFs and show different SNPs between all the samples? Have tried GATK, BCF tools, VarChest, VCFTools, NextGene project comparison, DNAStar, R packages. Is there a better solution available? Thank you.

vcf wgs r sequencing snp • 1.8k views
ADD COMMENT
1
Entering edit mode

if you've tried all those programs I don't understand why you're after a GUI. maybe a simple combination of bash commands, such as cut -f1-5 *.vcf | grep -v ^# | sort -k1,1 -k2,2n | uniq -c | awk '{if($1==1)print $2}', would do?

ADD REPLY
0
Entering edit mode
7.9 years ago

Using GATK (not a GUI tool) CombineVariants you can read many VCF and combines them into a single VCFs. CombineVariants always produces a union of the input VCFs. Then any part of the Venn of the merged VCFs can be extracted using JEXL expressions on the set attribute using SelectVariants.

ADD COMMENT
0
Entering edit mode

GATK throws errors on VCF file comparison (VCFs from the NextGene software output). Please advise a better solution for the comparison of 50-300 VCF with an aim to find distinctive genes. Thanks.

ADD REPLY

Login before adding your answer.

Traffic: 1706 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6