annotate aplcms_to_ramclustr_converter.xml @ 4:9ea34e24474f draft

"planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
author recetox
date Mon, 09 Aug 2021 15:29:08 +0000
parents 07667688735e
children b9263b8fcc1e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
1 <tool id="aplcms_to_ramclustr_converter" name="apLCMS to RamClustR converter" version="0.1.0+galaxy0" python_template_version="3.5">
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
2 <description>converts apLCMS parquet output to RamClustR csv input</description>
3
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
3 <requirements>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
4 <requirement type="package" version="1.1.5">pandas</requirement>
4
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
5 <requirement type="package" version="4.0.0">pyarrow</requirement>
3
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
6 </requirements>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
4
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
8 python $__tool_directory__/aplcms_to_ramclustr_converter.py --dataframe '${aplcms_dataframe}' '${out_file}'
3
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
9 ]]></command>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
10 <inputs>
4
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
11 <param name="aplcms_dataframe" type="data" format="parquet" label="apLCMS Dataframe"/>
3
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
12 </inputs>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
13 <outputs>
4
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
14 <data format="csv" name="out_file" label="Feature-by-sample ${aplcms_dataframe.name} table (csv)"/>
3
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
15 </outputs>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
16 <tests>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
17 <test>
4
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
18 <param name="aplcms_dataframe" value="input.parquet" ftype="parquet"/>
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
19 <output name="out_file" file="output.csv" ftype="csv"/>
3
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
20 </test>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
21 </tests>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
22 <help><![CDATA[
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
23 Tool to convert apLCMS output to csv file formated in accordance to RamClustR (CSV) input requirements.
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
24
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
25 **Workflow position**
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
26
4
9ea34e24474f "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 2dd20229f0c7f43dacc0d201ea50fef3c993d30e"
recetox
parents: 3
diff changeset
27 - Upstream tool: `apLCMS <https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms>`_ Unsupervised or Hybrid
3
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
28
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
29 - Downstream tool: `RamClustR <https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr>`_ (CSV)
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
30 ]]></help>
07667688735e "planemo upload for repository https://github.com/RECETOX/galaxytools/tools/aplcms_to_ramclustr_converter/ commit 521769cd5af12987a119e6302f22e2e1e864ff9a"
recetox
parents:
diff changeset
31 </tool>