This is a test version of Biostars. For the public version, visit https://www.biostars.org.
functional and genome annotation analysis

Hello, I want to do functional and genome annotation analysis in the vcf file, how can I do this with Annovar? I also want to separate the deletions in my VCF file. I would be happy if you could help me with these two issues.

deletion genome-annotation

2 answers

Hello, never used annovar. Did you check the documentation, they have nice tutorials there. To select deletions, you can use bcftools : bcftools view -i 'ILEN<0' <input.vcf>

@bestone, You can try ensembl vep or snpEff for the annotation of you vcf files and keep the output format as tab delimited file, doing this would be easier for futher variant filtering and interpretation steps. Hope this helps.

Log in to answer this question.