Mercurial > repos > recetox > aplcms_to_ramclustr_converter
view aplcms_to_ramclustr_converter.xml @ 5:b9263b8fcc1e draft
"planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 9bc547872c98a9c13c561d15e8990fe82bdc0e72"
author | recetox |
---|---|
date | Fri, 28 Jan 2022 16:20:51 +0000 |
parents | 9ea34e24474f |
children | a7f2f8d6f44b |
line wrap: on
line source
<tool id="aplcms_to_ramclustr_converter" name="apLCMS to RamClustR converter" version="0.1.0+galaxy0" python_template_version="3.5"> <description>converts apLCMS parquet output to RamClustR csv input</description> <macros> <import>macros.xml</import> </macros> <expand macro="creator"/> <requirements> <requirement type="package" version="1.1.5">pandas</requirement> <requirement type="package" version="4.0.0">pyarrow</requirement> </requirements> <command detect_errors="exit_code"><![CDATA[ python $__tool_directory__/aplcms_to_ramclustr_converter.py --dataframe '${aplcms_dataframe}' '${out_file}' ]]></command> <inputs> <param name="aplcms_dataframe" type="data" format="parquet" label="apLCMS Dataframe"/> </inputs> <outputs> <data format="csv" name="out_file" label="Feature-by-sample ${aplcms_dataframe.name} table (csv)"/> </outputs> <tests> <test> <param name="aplcms_dataframe" value="input.parquet" ftype="parquet"/> <output name="out_file" file="output.csv" ftype="csv"/> </test> </tests> <help> <![CDATA[ @HELP@ ]]> </help> </tool>