Mercurial > repos > metexplore > met4j
view 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 |
line wrap: on
line source
<?xml version="1.0"?> <!-- A sample job config that explicitly configures job running the way it is configured by default (if there is no explicit config). --> <job_conf> <plugins> <plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="4"/> </plugins> <destinations default="singularity"> <destination id="local" runner="local"/> <destination id="docker_local" runner="local"> <param id="docker_enabled">true</param> </destination> <destination id="singularity" runner="local"> <param id="singularity_enabled">true</param> <!-- Ensuring a consistent collation environment is good for reproducibility. --> <env id="LC_ALL">C</env> <!-- The cache directory holds the docker containers that get converted. --> <env id="SINGULARITY_CACHEDIR">/tmp/singularity</env> <!-- Singularity uses a temporary directory to build the squashfs filesystem. --> <env id="SINGULARITY_TMPDIR">/tmp</env> </destination> </destinations> </job_conf>