view config/job_conf.xml @ 7:1436e9cde9c9 draft

planemo upload for repository https://forgemia.inra.fr/metexplore/met4j-galaxy commit 1d31a48bf8328b7a3ad9910971d24b9f453459c5
author metexplore
date Tue, 04 Jul 2023 10:21:26 +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>