• You're one step from joining Bioinformatics Forums – Research, Tools, Code & Collaboration.
    Create a free account to post, follow threads, and never miss an update.  Sign up free →

Perl related error

mrkidd

New member
Joined
May 20, 2025
Messages
2
Hi all. How or where can i check if my code for Variant Effect Predictor (VEP) and vcf2maf in a Conda environment is correct? I am getting a Perl relocation error I am not familiar with Perl so I'm not sure how to proceed. Any suggestions or insights would be greatly appreciated!
 
That error usually comes from a mismatch in Perl libraries inside conda, check which Perl is being used in your environment. The VEP docker image can bypass these issues entirely if you want something more stable. Posting the exact error would help narrow it down.
 
Check perl V to see what it's linked to, and if you're using conda, make sure VEP and vcf2maf are installed in the same env with the right Perl.
 
It's great advice! I faced a similar issue a while back while setting up VEP in Conda. I completely overlooked the fact that I had two different versions of Perl in separate environments. It took me ages to figure out that a dependency mismatch was the culprit behind the relocation error. Running `perl -V` helped me get to the bottom of it quickly. It's definitely a good idea to double-check your environment setup. I hope you sort it out soon
 
Back
Top