Description
Hi, I am using get_phylomarkers on a HPC cluster using slurm. On the cluster I can't use docker and have to use apptainer instead.
The sbatch file looks like this:
!/bin/bash
#SBATCH -p defq
#BSUB -J get_phylom
#BSUB -o stdout.%J
#BSUB -e stderr.%J
module load apptainer
apptainer run --bind /home/thuenen/work:/home/you/get_homPhy/ apptainer/get_phylomarkers_latest.sif "/home/you/get_homPhy/get_phylo.sh"
The get_phlyo.sh script looks like this:
#!/bin/bash
cd /home/you/get_homPhy/Mesorhizobium/GBFF_homologues/core_B_Mesorhizobia
run_get_phylomarkers_pipeline.sh -R 1 -t DNA
The problem is, that the run_get_phylomarkers_pipeline.sh script is not running through completely, but simply stops at some point, without giving any error message. I have attached the log file.
Is there a way to find out, what is happening, and why the script stops?
Best regards,
Torsten