comparison abromics_galaxy_json_extractor_summarize.xml @ 0:eb95c9ca5c60 draft

planemo upload commit fd67555ae5bcff6d9052259771f805c4cd8124d3-dirty
author ifb-elixirfr
date Mon, 24 Jul 2023 14:57:00 +0000
parents
children e3463c64863b
comparison
equal deleted inserted replaced
-1:000000000000 0:eb95c9ca5c60
1 <tool id="abromics_extractor_summarize" name="abromics_extractor_summarize" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
2 <description>
3 Summarize results from abromicsextractor
4 </description>
5 <macros>
6 <import>macro.xml</import>
7 </macros>
8 <expand macro='edam'/>
9 <expand macro="requirements"/>
10 <expand macro="version_command"/>
11 <command detect_errors="aggressive"><![CDATA[
12 mkdir -p input_files &&
13 #for $file in $summarize_data
14 cp $file input_files &&
15 #end for
16 abromics_extract summarize input_files/* -o abromics_summary.json
17 ]]>
18 </command>
19 <inputs>
20 <param name="summarize_data" type="data" multiple="true" format="json" label="Results in Json format" help="Summarize results from abromicsextractor in json format"/>
21 </inputs>
22 <outputs>
23 <data name="summary_json" format="json" from_work_dir="abromics_summary.json" label="${tool.name} on ${on_string}: Summarized file"/>
24 </outputs>
25 <tests>
26 <test expect_num_outputs="1"> <!-- TEST_1 sumarize json results -->
27 <param name="summarize_data" ftype="json" value="summarize/abricate_output.json,summarize/bracken_full_output.json,summarize/plasmidfinder_output.json"/>
28 <output name="summary_json" ftype="json" value="summarize/summarize.json" compare="sim_size"/>
29 </test>
30 </tests>
31 <help><![CDATA[**What it does**
32 Summarize Json output file from abromics_galaxy_json_extractor to only one json file
33 ]]></help>
34 <expand macro="citations"/>
35 </tool>