unable to access executable in PATH from remote server
1
0
Entering edit mode
4.0 years ago
deman23 ▴ 10

I have an web application hosted with Django-gUnicorn-Nginx. The web app is working mostly fine and is accessible except for one functionality.

Recently, I added pybedtools, a python wrapper package for bedtools. I have the binary executables of bedtools in the PATH variable. However, the server is unable to access this executable.

The error just reports intersectBed does not appear to be installed or on the path, so this method is disabled. Please install a more recent version of BEDTools and re-import to use this method

I have tested/reinstalled the latest versions locally and it works, but not in the server.

Any ideas? Thanks in advance.

bedtools pybedtools django nginx gunicorn • 1.3k views
ADD COMMENT
0
Entering edit mode

I have the binary executables of bedtools in the PATH variable. However, the server is unable to access this executable.

Please show code how you did that. PATH should contain the directory where binaries are stored in, not the binary itself.

So if bedtools executable is in a folder bin then set PATH to export PATH=$PATH:/path/to/bin

ADD REPLY
0
Entering edit mode

Thanks. Yes, I've done it as you mentioned

export PATH=$PATH:/home/xxxxxx/miniconda3/bin

This is where I've the bedtools executables

ADD REPLY
1
Entering edit mode
4.0 years ago
deman23 ▴ 10

Good old print statements came to rescue!

The path variable passed on to the server instance somehow had only the defaults /usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin.

I couldn't manage to export the location where bedtools is installed to the PATH. So I simply created a symlink of bedtools executable in my /usr/local/bin

Thanks for the suggestions @ATpoint.

ADD COMMENT
0
Entering edit mode

Thanks a lot for this! very helpful and easiest to do.

ADD REPLY

Login before adding your answer.

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