1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
.. _start_parallel_jobs_sc:
.. index:: start_parallel_jobs_sc.py
*start_parallel_jobs_sc.py* -- Starts parallel jobs on Sun GridEngine queueing systems.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
**Description:**
Starts multiple jobs in parallel on Sun GridEngine systems. This is designed to work with StarCluster EC2 instances, but may be applicable beyond there.
**Usage:** :file:`start_parallel_jobs_sc.py [options]`
**Input Arguments:**
.. note::
**[OPTIONAL]**
-m, `-`-make_jobs
Make the job files [default: None]
-s, `-`-submit_jobs
Submit the job files [default: None]
-q, `-`-queue_name
The queue to submit jobs to [default: all.q]
**Output:**
No output is created.
**Job submission example:**
Start each command listed in test_jobs.txt in parallel. The run ID for these jobs will be RUNID.
::
start_parallel_jobs_sc.py -ms test_jobs.txt RUNID
**Queue specification example:**
Submit the commands listed in test_jobs.txt to the specified queue.
::
start_parallel_jobs_sc.py -ms test_jobs.txt -q all.q RUNID
|