#!/bin/bash
#SBATCH --partition=batch
#SBATCH --job-name=TrimGalore-0.6.10-case.sh
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=4
#SBATCH --time=02:00

module load gcc/13.2.0-iqpfkya trimgalore/0.6.10

# Suggested because the system version of pigz is a little old:
module load pigz

# You might also want to load the python module if it is newer than system python

trim_galore -j $SLURM_NTASKS dataset.fastq.gz
