Using VEP custom on ClinVar error - Couldn't find index.
1
0
Entering edit mode
3.0 years ago
milwaukee • 0

Hi, Biostars community.

I have installed VEP docker container (ensemblorg/ensembl-vep), trying to use it for annotate my .vcf file with "--custom" option, but it doesn't work.

Usage command:

sudo docker run \
    -t -i -v ~/.vep:/opt/vep/.vep \
    ensemblorg/ensembl-vep vep \
    -i test.vcf --o result.vcf --custom clinvar.vcf.gz,ClinVar,vcf,exact,0,CLNSIG

~/.vep folder:

enter image description here

Error message:

[E::hts_open_format] Failed to open file clinvar.vcf.gz
Couldn't find index for file clinvar.vcf.gz at /usr/local/lib/x86_64-linux-gnu/perl/5.26.1/Bio/DB/HTS/Tabix.pm line 53.

UPD:

Thanks to VEP developer Andrew, problem is solved.

Solution was in changing paths inside of docker vep call.

sudo docker run \
    -t -i -v ~/.vep:/opt/vep/.vep \
    ensemblorg/ensembl-vep vep \
    -i /opt/vep/.vep/test.vcf --o /opt/vep/.vep/result.vcf --custom /opt/vep/.vep/clinvar.vcf.gz,ClinVar,vcf,exact,0,CLNSIG
vep custom ensembl clinvar • 1.6k views
ADD COMMENT
0
Entering edit mode

Is /home/gene the home directory for the account you are logged in? Can you explicitly add -v /home/gene/.vep instead of ~/.vep?

ADD REPLY
0
Entering edit mode

Yes, it is. Still the same error.

ADD REPLY
2
Entering edit mode
3.0 years ago
Emily 23k

Cross-posted to GitHub with response from VEP developers: post

ADD COMMENT

Login before adding your answer.

Traffic: 1943 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