comparison example.xml @ 0:cdf628cb43db draft default tip

planemo upload for repository https://github.com/bernt-matthias/galaxy-tool-repository-template/tree/master/tools/example/ commit 72a33d7c3ad18e717ec61c6b845099d69b9b7abd
author goeckslab
date Tue, 20 Sep 2022 17:35:01 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cdf628cb43db
1 <tool id="example" name="example" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01" license="MIT">
2 <description>serving as an example</description>
3 <xrefs>
4 <xref type="bio.tools"></xref>
5 </xrefs>
6 <macros>
7 <token name="@TOOL_VERSION@">0.1.0</token>
8 <token name="@VERSION_SUFFIX@">0</token>
9 </macros>
10 <edam_topics>
11 <edam_topic>topic_4019</edam_topic>
12 </edam_topics>
13 <edam_operations>
14 <edam_operation>operation_3429</edam_operation>
15 </edam_operations>
16 <requirements>
17 <requirement type="package" version="5.0.018">bash</requirement>
18 </requirements>
19 <command detect_errors="aggressive"><![CDATA[
20 echo '$in' > '$out'
21 ]]></command>
22 <inputs>
23 <param name="in" type="text" value="" label="A text onput parameter" help="Could need some help">
24 <sanitizer invalid_char="">
25 <valid initial="string.letters,string.digits">
26 <add value="_" />
27 </valid>
28 </sanitizer>
29 </param>
30 </inputs>
31 <outputs>
32 <data format="txt" name="out" />
33 </outputs>
34 <tests>
35 <test>
36 <param name="in" value="test" />
37 <output name="out">
38 <assert_contents>
39 <has_text text="test" />
40 </assert_contents>
41 </output>
42 </test>
43 </tests>
44 <help><![CDATA[
45
46 .. class:: infomark
47
48 **What it does**
49
50 Serves as an example
51 ]]></help>
52 <citations>
53 <citation type="doi">10.1093/nar/gky379</citation>
54 </citations>
55 </tool>