Skip to main content

Job Script Examples

Job Arrays

Sometimes, you may want to run several jobs concurrently, each operating on different data or input. In this case, instead of submitting several jobs one after the other, you can submit a job array, which will allow you to submit several jobs using a single script.

This example demonstrates a submission script for an array job.

View the Job Arrays example on GitHub

Job Chaining

Sometimes, you may want to have a series of jobs run in sequence, one after the other. Instead of manually submitting each job when the last one finishes, you can chain jobs and submit them at once.

View the Job Chaining example on GitHub