Mercurial > repos > metexplore > met4j
view config/job_conf.xml @ 8:1274e2a62479 draft default tip
planemo upload for repository https://forgemia.inra.fr/metexplore/met4j-galaxy commit e34acf0f51cafcf6ae7c97b4feb3188a39f17c32
author | metexplore |
---|---|
date | Wed, 26 Jul 2023 15:33:45 +0000 |
parents | dcd16521b969 |
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>