comparison config/job_conf.xml @ 0:dcd16521b969 draft

planemo upload for repository https://forgemia.inra.fr/metexplore/met4j-galaxy commit 5dab0a2d83a1fdd7a1878a50ba0f24e752505393
author metexplore
date Fri, 10 Jun 2022 10:31:34 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dcd16521b969
1 <?xml version="1.0"?>
2 <!-- A sample job config that explicitly configures job running the way it is
3 configured by default (if there is no explicit config). -->
4 <job_conf>
5 <plugins>
6 <plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="4"/>
7 </plugins>
8 <destinations default="singularity">
9 <destination id="local" runner="local"/>
10 <destination id="docker_local" runner="local">
11 <param id="docker_enabled">true</param>
12 </destination>
13 <destination id="singularity" runner="local">
14 <param id="singularity_enabled">true</param>
15 <!-- Ensuring a consistent collation environment is good for reproducibility. -->
16 <env id="LC_ALL">C</env>
17 <!-- The cache directory holds the docker containers that get converted. -->
18 <env id="SINGULARITY_CACHEDIR">/tmp/singularity</env>
19 <!-- Singularity uses a temporary directory to build the squashfs filesystem. -->
20 <env id="SINGULARITY_TMPDIR">/tmp</env>
21 </destination>
22 </destinations>
23 </job_conf>