#!/bin/bash -l # 12 combinations of parameters, run a job array with # 12 tasks. Each job that's launched will get # SGE_TASK_ID assigned to 1,2,...,12 automatically. #$ -t 1-12 #$ -j y # Load the python3 module you'd like to use module load python3/3.8.10 # The Python script will use SGE_TASK_ID to select a # set of parameters from a list of combinations generated # inside the Python script. python param_sweep_1.py