Skip to content

Instantly share code, notes, and snippets.

@jmchilton
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmchilton/ff186b01d51d401623be to your computer and use it in GitHub Desktop.
Save jmchilton/ff186b01d51d401623be to your computer and use it in GitHub Desktop.
Exclusive Local Runners
<?xml version="1.0"?>
<!-- Example Galaxy job_conf.xml file that ensures a handful tools run one at a time.
-->
<job_conf>
<plugins>
<plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="2"/>
<plugin id="local_exclusive" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="1"/>
</plugins>
<handlers>
<handler id="main"/>
</handlers>
<destinations default="local">
<destination id="local" runner="local"/>
<destination id="local_exclusive" runner="local_exclusive" />
</destinations>
<tools>
<!-- Replace following tool ids with actual tool ids -->
<tool id="hilbert" destination="local_exclusive" />
<tool id="fft" destination="local_exclusive" />
<tool id="slm" destination="local_exclusive" />
</tools>
</job_conf>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment