diff chap/chap.xml @ 0:47d2a1f087d1 draft

planemo upload for repository https://github.com/CHESSComputing/ChessAnalysisPipeline commit fe909397cd829fe9a784a810d0264ab1751ae090-dirty
author ximgchess
date Tue, 11 Apr 2023 14:41:16 +0000
parents
children d8baf7dafbd8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/chap/chap.xml	Tue Apr 11 14:41:16 2023 +0000
@@ -0,0 +1,42 @@
+<tool id="CHAP_test" name="CHESS Analysis Pipeline" version="0.1.0+galaxy0" python_template_version="3.5" profile="21.05">
+    <requirements>
+        <requirement type="package" version="0.0.2">ChessAnalysisPipeline</requirement>
+    </requirements>
+    <command detect_errors="exit_code"><![CDATA[
+        cp '$input' data.csv &&
+        CHAP --config '$config' &&
+    ]]></command>
+    <inputs>
+        <param type="data" name="config" format="yaml" />
+        <param type="data" name="input" format="csv" />
+    </inputs>
+    <outputs>
+        <data name="output" format="json" />
+    </outputs>
+    <tests>
+        <test>
+            <param name="config" value="config.yaml"/>
+            <param name="input" value="data.csv"/>
+        </test>
+    </tests>
+    <help><![CDATA[
+        CHESS Analysis Pipeline (CHAP):
+
+        To run it on command line you'll use:
+        CHAP --config CONFIG
+
+        To run it within galaxy you'll only need to upload your
+        required configuration pipeline and necessary data.
+    ]]></help>
+    <citations>
+        <citation type="bibtex">
+@misc{githubChessAnalysisPipeline,
+  author = {LastTODO, FirstTODO},
+  year = {TODO},
+  title = {ChessAnalysisPipeline},
+  publisher = {GitHub},
+  journal = {GitHub repository},
+  url = {https://github.com/CHESSComputing/ChessAnalysisPipeline},
+}</citation>
+    </citations>
+</tool>