Mercurial > repos > ifb-elixirfr > abromics_extractor_summarize
view abromics_galaxy_json_extractor_summarize.xml @ 8:ce112a6105fa draft
planemo upload for repository https://gitlab.com/ifb-elixirfr/abromics/galaxy-tools commit 8623190a78f9aaaf9a8ec4f039af36307af34e3f
author | ifb-elixirfr |
---|---|
date | Wed, 27 Mar 2024 13:53:04 +0000 |
parents | e3463c64863b |
children |
line wrap: on
line source
<tool id="abromics_extractor_summarize" name="abromics_extractor_summarize" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> <description> Summarize results from abromicsextractor </description> <macros> <import>macro.xml</import> </macros> <expand macro='edam'/> <expand macro="requirements"/> <expand macro="version_command"/> <command detect_errors="aggressive"><![CDATA[ abromics_extract --version && mkdir -p input_files && #for $file in $summarize_data cp $file input_files && #end for abromics_extract summarize input_files/* -o abromics_summary.json ]]> </command> <inputs> <param name="summarize_data" type="data" multiple="true" format="json" label="Results in Json format" help="Summarize results from abromicsextractor in json format"/> </inputs> <outputs> <data name="summary_json" format="json" from_work_dir="abromics_summary.json" label="${tool.name} on ${on_string}: Summarized file"/> </outputs> <tests> <test expect_num_outputs="1"> <!-- TEST_1 sumarize json results --> <param name="summarize_data" ftype="json" value="summarize/abricate_output.json,summarize/bracken_full_output.json,summarize/plasmidfinder_output.json"/> <output name="summary_json" ftype="json" value="summarize/summarize.json" compare="sim_size"/> </test> </tests> <help><![CDATA[**What it does** Summarize Json output file from abromics_galaxy_json_extractor to only one json file ]]></help> <expand macro="citations"/> </tool>