Skip to content

Instantly share code, notes, and snippets.

@jmchilton
Created January 30, 2015 15:47
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/ca39ef1a3241d9074121 to your computer and use it in GitHub Desktop.
Save jmchilton/ca39ef1a3241d9074121 to your computer and use it in GitHub Desktop.
<job_conf>
<plugins workers="4">
<plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner"/>
<plugin id="pulsar_rest" type="runner" load="galaxy.jobs.runners.pulsar:PulsarRESTJobRunner">
</plugin>
</plugins>
<destinations default="local">
<destination id="local" runner="local"/>
<destination id="pulsar_cluster" runner="runner_rest">
<param id="url">https://remote_cluster_hostname.northwestern.edu:8913/</param>
<param id="private_token">123456789abcde</param> <!-- this should match pulsar's ->
</destination>
</destination>
<tools>
<!-- add entry for each tool you wish to send to pulsar cluster, change default destination above
to send them all there by default -->
<tool id="bowtie2" destination="pulsar_cluster">
</tools>
</job_conf>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment