Mercurial > repos > public-health-bioinformatics > fastp_json_to_tabular
diff fastp_json_to_tabular.xml @ 0:091a2fb2e7ad draft default tip
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/tree/master/tools/fastp_json_to_tabular commit 888d26702a84c2f8fd1428aff8cd869e94cc0bae"
author | public-health-bioinformatics |
---|---|
date | Thu, 10 Mar 2022 21:59:56 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fastp_json_to_tabular.xml Thu Mar 10 21:59:56 2022 +0000 @@ -0,0 +1,33 @@ +<tool id="fastp_json_to_tabular" name="Convert fastp json report to tabular" version="0.1.0"> + <description>Convert fastp json report to tabular</description> + <requirements> + </requirements> + <command detect_errors="exit_code"><![CDATA[ + '$__tool_directory__/fastp_json_to_tabular.py' + ${report} > ${output} + ]]></command> + <inputs> + <param name="report" type="data" format="json" /> + </inputs> + <outputs> + <data name="output" label="fastp report" format="tabular"/> + </outputs> + <tests> + <test> + <param name="report" value="test-01_fastp.json" /> + <output name="output" file="test-01_fastp.tsv" ftype="tabular" /> + </test> + <test> + <param name="report" value="test-02_fastp.json" /> + <output name="output" file="test-02_fastp.tsv" ftype="tabular" /> + </test> + <test> + <param name="report" value="test-03_fastp.json" /> + <output name="output" file="test-03_fastp.tsv" ftype="tabular" /> + </test> + </tests> + <help><![CDATA[ + ]]></help> + <citations> + </citations> +</tool>