Hi Pierre.
Thanks for the fast response. I've tried out your solution together with moving to a smaller dataset and adding some extra "just to be safe" code. It doesn't seem to work though. I still get the same errors... Here's my tweaked script
#!/usr/bin/env bash
#PBS -l nodes=1:ppn=1
#PBS -l walltime=02:00:00
#PBS -l pmem=4gb
#PBS -A default_project
cd /vsc-hard-mounts/leuven-data/341/vsc34135/Ofunato
source /vsc-hard-mounts/leuven-data/341/vsc34135/miniconda3/etc/profile.d/conda.sh
conda activate discosnp_env
curl -o ofunato1.fastq.bz.1 https://ddbj.nig.ac.jp/public/ddbj_database/dra/fastq/DRA005/DRA005744/DRX084576/DRR090871_1.fastq.bz2
bzcat ofunato1.fastq.bz.1 | gzip -c >ofunato1.1.gz
curl -o ofunato1.fastq.bz.2 https://ddbj.nig.ac.jp/public/ddbj_database/dra/fastq/DRA005/DRA005744/DRX084576/DRR090871_2.fastq.bz2
bzcat ofunato1.fastq.bz.2 | gzip -c >ofunato1.2.gz
TERM=xterm
run_discoSnp++.sh -r ofunato_1.txt -T
with ofunato_1.txt:
ofunato1.1.gz
ofunato1.2.gz
The job takes less than a minute to run, so it must be something in the very beginning that goes wrong.