diff aplcms_to_ramclustr_converter.xml @ 3:07667688735e draft

"planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
author recetox
date Wed, 17 Feb 2021 15:14:33 +0000
parents
children 9ea34e24474f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/aplcms_to_ramclustr_converter.xml	Wed Feb 17 15:14:33 2021 +0000
@@ -0,0 +1,37 @@
+<tool id="aplcms_to_ramclustr_converter" name="apLCMS to RamClustR converter" version="0.0.1+galaxy0" python_template_version="3.5">
+    <description>converts aplcms HDF output to RamClustR csv input</description>
+    <requirements>
+        <requirement type="package" version="3.7">python</requirement>
+        <requirement type="package" version="1.1.5">pandas</requirement>
+        <requirement type="package" version="3.6.1">pytables</requirement>
+    </requirements>
+    <command detect_errors="exit_code"><![CDATA[
+        python $__tool_directory__/aplcms_to_ramclustr_converter.py --dataframe '${hdf_dataframe}' --table '${table_name}' '${out_file}'
+    ]]></command>
+    <inputs>
+        <param name="hdf_dataframe" type="data" format="h5" label="apLCMS Dataset"/>
+        <param name="table_name" type="select" label="Table Name">
+            <option value="peaks">peaks</option>
+            <option value="aligned_peaks">aligned peaks</option>
+        </param>
+    </inputs>
+    <outputs>
+        <data format="csv" name="out_file" label="CSV with ${table_name} from ${hdf_dataframe.name}"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="hdf_dataframe" value="test-input.h5" ftype="h5"/>
+            <param name="table_name" value="peaks"/>
+            <output name="out_file" file="test-output.csv" ftype="csv"/>
+        </test>
+    </tests>
+    <help><![CDATA[
+        Tool to convert apLCMS output to csv file formated in accordance to RamClustR (CSV) input requirements.
+
+        **Workflow position**
+
+        - Upstream tool: `apLCMS <https://github.com/RECETOX/galaxytools/tree/master/tools/aplcms>`_  Unsupervised or Hybrid
+
+        - Downstream tool: `RamClustR <https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr>`_ (CSV)
+    ]]></help>
+</tool>