view job_conf.xml.sample @ 20:41cf6f56d1b6 draft

planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 37b0a6a7686f701e4bf00db97ae2c1b82cd6e989
author lecorguille
date Fri, 09 Nov 2018 15:10:13 -0500
parents b62808a2a008
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="sge" load="galaxy.jobs.runners.drmaa:DRMAAJobRunner" type="runner"/>
        <plugin id="dynamic" type="runner" >
            <param id="rules_module">galaxy.jobs.rules</param>
        </plugin>
    </plugins>
    <handlers>
        <handler id="main"/>
    </handlers>
    <destinations default="sge_default">
        <destination id="sge_default" runner="sge">
             <param id="nativeSpecification">-V -w n -q galaxy.q</param>
        </destination>

        <destination id="thread1-men_free8" runner="sge">
             <param id="nativeSpecification">-V -w n -q galaxy.q -pe thread 1 -R y -l mem_free=8G </param>
        </destination>
        <destination id="thread8-men_free12" runner="sge">
            <param id="nativeSpecification">-V -w n -q galaxy.q -pe thread 8 -R y -l mem_free=16G </param>
        </destination>

        <destination id="python_destination_input_type" runner="dynamic">
            <param id="type">python</param>
            <param id="function">input_type</param>
        </destination>
    </destinations>
    <tools>
        <tool destination="python_destination_input_type" id="abims_xcms_xcmsSet" />
    </tools>
</job_conf>