Mercurial > repos > rv43 > tomo
diff tomo_reconstruct.xml @ 3:f9c52762c32c draft
"planemo upload for repository https://github.com/rolfverberg/galaxytools commit 7dce44d576e4149f31bdc2ee4dce0bb6962badb6"
author | rv43 |
---|---|
date | Tue, 05 Apr 2022 18:23:54 +0000 |
parents | |
children | 845270a96464 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tomo_reconstruct.xml Tue Apr 05 18:23:54 2022 +0000 @@ -0,0 +1,36 @@ +<tool id="tomo_reconstruct" name="Tomo Reconstruction" version="0.1.0" python_template_version="3.9"> + <description>Perform a tomography reconstruction</description> + <requirements> + <requirement type="package" version="1.11.0">tomopy</requirement> + <requirement type="package" version="3.6.0">h5py</requirement> + </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> + <param name="red_stacks" type='data' format='npz' optional='false' label="Reduced stacks"/> + <param name="config" type='data' format='yaml' optional='false' label="Input config"/> + </inputs> + <outputs> + <data name="output_data" format="npz" label="Reconstructed tomography stacks" from_work_dir="output_data.npz"/> + <data name="output_config" format="yaml" label="Output config" from_work_dir="output_config.yaml"/> + <data name="log" format="txt" label="Log"/> + </outputs> + <help><![CDATA[ + Reconstruct tomography images. + ]]></help> + <citations> + <citation type="bibtex"> +@misc{githubsum_files, + author = {Verberg, Rolf}, + year = {2022}, + title = {Tomo Reconstruction}, +}</citation> + </citations> + +</tool>