view tomo_reconstruct.xml @ 11:ec7c3e84d611 draft

"planemo upload for repository https://github.com/rolfverberg/galaxytools commit 6d01e142af3a0daad7ab37d4ff02d0f1797057a7"
author rv43
date Fri, 08 Apr 2022 16:39:07 +0000
parents 845270a96464
children 1bcca1f2adb4
line wrap: on
line source

<tool id="tomo_reconstruct" name="Tomo Reconstruction" version="0.1.0" python_template_version="3.9">
    <description>Perform a tomography reconstruction</description>
    <macros>
        <import>tomo_macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <command detect_errors="exit_code"><![CDATA[
        $__tool_directory__/tomo_reconstruct.py
        -i '$red_stacks'
        -c '$config'
        --output_data 'output.npz'
        --output_config 'output_config.yaml'
        -l '$log'
    ]]></command>
    <inputs>
        <expand macro="common_inputs"/>
        <param name="red_stacks" type='data' format='npz' optional='false' label="Reduced stacks"/>
    </inputs>
    <outputs>
        <expand macro="common_outputs"/>
        <data name="output_data" format="npz" label="Reconstructed tomography stacks" from_work_dir="output_data.npz"/>
    </outputs>
    <help><![CDATA[
        Reconstruct tomography images.
    ]]></help>
    <expand macro="citations"/>
</tool>