#!/bin/bash -l # Give job a name #$ -N jobs_tasks # Join output and error streams to reduce the clutter #$ -j y # Specify the number of tasks (number of parallel jobs you want to run #$ -t 1-5 # Send files with output and error messages from all tasks to this directory # The directory MUST exist before the job is submitted #$ -o logs # specify version of the software module load R/4.4.3 Rscript task.R module load python3/3.12.4 python task.py