Closed jxshi closed 5 years ago
Hi,
I have replaced VEP
with vep
in line 106 of the following file to solve this.
~/local/share/bcbio/anaconda/lib/python3.6/site-packages/bcbio/variation/effects.py
Cheers!
Jianxiang
Thanks, it looks like they switched from VEP
to having both VEP
and vep
to only having vep
, so it seems like maybe they were transitioning off of VEP and moving to justvep
. I added a check to check for the release version being >= 97, and if so using vep
. Thanks!
Hi @jxshi , @roryk
I just reinstalled bcbio_nextgen less than 9 days ago and was upgrading vep. I came across the same as jxshi , but in my case it is line 99 of effects.py :
url = "http://ftp.ensembl.org/pub/release-%s/variation/VEP/%s.tar.gz" % (eversion, ensembl_name)
Changing manually from VEP to vep fixed the issue. So perhaps this is still in the code.
Hi @erinijapranckeviciene,
If you upgrade to the development version with -u development
you'll pull in this fix, I think you might be operating on the -u stable
branch.
Hi @roryk , yes, this is the case, thank you.
Great! Thanks for following up.
Hi,
I tried to upgrade bcbio-nextgen recently. But it encountered the following error.
I found that the link to vep data needs to be updated. (
VEP
should be in lower case in current link).Previous link: http://ftp.ensembl.org/pub/release-97/variation/VEP/homo_sapiens_merged_vep_97_GRCh37.tar.gz
Current link: http://ftp.ensembl.org/pub/release-97/variation/vep/homo_sapiens_merged_vep_97_GRCh37.tar.gz
Thank you!
Cheers!
Jianxiang