Running bash script from PATH automatically logging into the server
2
0
Entering edit mode
23 months ago
margo ▴ 40

I am trying to create a bash script and add it to my $PATH to run automatically when logging into the server. I am wanting to download FASTQC and trimgalore and add them to my bash script so they don't have to be downloaded every time I log onto the server. Does anyone know how to do this?

bash fastqc linux • 1.6k views
ADD COMMENT
0
Entering edit mode

as dariober mentions below: your .bashrc (or .zshrc, .cshrc ... depending on what shell you use) file is the way to go to get this done.

I will not comment on the feasibility/usefulness of what you try to achieve ;)

ADD REPLY
2
Entering edit mode
23 months ago

I'm guessing here... You have downloaded fastqc, trimgalore etc. Now you want to put them in one of the directories listed in the PATH variable so that when you login you can execute e.g. fastqc without specifying the full path to fastqc. Usually, you do this by moving the programs of interest to ~/bin or ~/.local/bin. These directories may already exist and be in $PATH, if not create them and edit ~/.bashrc to add them. But do echo $PATH to see first what you already have.

Having said that, I suggest installing conda and bioconda and let conda manage program installations for you.

ADD COMMENT
0
Entering edit mode

would this be done by:

ln -s home/usr/tools/FastQC/fastqc ~/.local/bin

As when I type 'fastqc' within the command line, it just returns the message:

Command 'fastqc' not found, but can be installed with: apt install fastqc Please ask your administrator.

ADD REPLY
0
Entering edit mode

Yest it could be done that way but it looks like you are missing a leading / before home in the command you posted above.

For this to work ~/.local/bin needs to be added to your $PATH permanently via .bashrc or which ever shell you are using.

ADD REPLY
0
Entering edit mode

The symlink needs to point to a file with the corresponding name: ln -s /home/usr/tools/FastQC/fastqc ~/.local/bin/fastqc. You only need to do this once.

The directory ~/.local/bin needs to exist and be on your path. You can check with echo $PATH. If not, add it to your path with export PATH=~/.local/bin:$PATH. From now on, every executable symlinked with that directory should be executed when typing the name.

PS: If singularity happens to be installed on your system, there would be an alternative solution...

ADD REPLY
1
Entering edit mode

@Matthias Zepper, I have no experience with singularity or docker in part because our IT refuses to install docker on the basis of security concerns. I don't know if these concerns are valid, but either way, depending on something that only the administrator can install is a bit of a red flag for me. Conda environments are not as isolated as docker/singularity containers but you don't need admin rights and settings things up from scratch is quite simple. E.g. install conda/bioconda, if not already there:

curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh

conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge

Create your project environment and install dependencies listed in requiremenents.txt:

conda create --yes -n my-env
conda activate my-env
conda install -n my-env --yes --file requirements.txt

If you add these instructions to a README file then you are quite "portable". PS: I would use mamba instead of conda for installing dependencies.

ADD REPLY
1
Entering edit mode

@dariober: Fair enough. Indeed, securing Docker on an HPC system and e.g. mitigating privilege escalation is very difficult, so concerns of your IT department are appropriate. This is why I was asking about Singularity, which very actively restricts permissions so that one does not gain access to additional resources while inside the container. It is therefore the preferred platform for running portable containers in traditional HPC environments.

conda/mamba is nice, and I use it a lot on my local machine, but since our HPC cluster has no internet access, pulling software and dependencies from Bioconda doesn't fly. In contrast, building Singularity images or downloading them from Galaxy & Biocontainers, scp'ing them to the cluster and executing them there does work even with regular user privileges.

Since the original poster didn't specify the exact compute environment and privileges, it is hard to tell what solution is "the best". I agree, that modifying the $PATH is the most straightforward, using conda perfectly fine and mentioned running singularity images just as another option.

ADD REPLY
1
Entering edit mode

Thanks for feedback... I had a look at singularity and it seems it can be installed without root and perhaps IT is going to be less concerned (I haven't asked...)

our HPC cluster has no internet access

That must be a major pain! Depending on how much data you process, I would consider buying a decent desktop or a server with Lynux and moving away from the cluster altogether.

ADD REPLY
1
Entering edit mode

Well, we are also processing human genome data, so the lack of network access is one of several provisions against data breaches.

Can you recommend a decent desktop capable of crunching ~420500 core-hours a month? :-P (And a cheap electricity provider...)

ADD REPLY
1
Entering edit mode
23 months ago
GenoMax 141k

This question does not make sense. Programs do not need to be downloaded every time one logs into the server. They are installed one time (if needed) and can be re-used. Are you logging into a server managed by someone else or are you using a computer you are managing?

ADD COMMENT
0
Entering edit mode

GenoMax I am logging into a server where I do not have root access. I am trying to download the software and make it executable through a bash script permanently. I am trying to run the programs from anywhere and not just within the FastQC/trimgalore folder.

ADD REPLY
0
Entering edit mode

Why don't you use conda/bioconda to install these programs?

ADD REPLY

Login before adding your answer.

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