comparison abromics_galaxy_json_extractor_summarize.xml @ 0:35704a6837a7 draft

planemo upload commit bb69b191fe3ce756655bf90af4d69e4472f94ba9-dirty
author pimarin
date Sun, 04 Jun 2023 17:15:36 +0000
parents
children 5a7db3d820c5
comparison
equal deleted inserted replaced
-1:000000000000 0:35704a6837a7
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="abricate/abricate_output.json,bracken/bracken_full_output.json,plasmidfinder/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>