comparison tac.xml @ 19:12615d397df7 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 70980e329cd9fa78e74bf14a76fd4ded9bd2b91f
author bgruening
date Thu, 29 Feb 2024 22:15:20 +0000
parents 4c752559b236
children
comparison
equal deleted inserted replaced
18:d698c222f354 19:12615d397df7
1 <tool id="tp_tac" name="tac" version="@BASE_VERSION@.0"> 1 <tool id="tp_tac" name="tac" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
2 <description>reverse a file (reverse cat)</description> 2 <description>reverse a file (reverse cat)</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="creator"/>
6 <expand macro="requirements" /> 7 <expand macro="requirements" />
7 <version_command>tac --version | head -n 1</version_command> 8 <version_command>tac --version | head -n 1</version_command>
8 <command> 9 <command>
9 <![CDATA[ 10 <![CDATA[
10 tac 11 tac
13 $separator.regex 14 $separator.regex
14 #if $separator.separator_string: 15 #if $separator.separator_string:
15 "$separator.separator_string" 16 "$separator.separator_string"
16 #end if 17 #end if
17 #end if 18 #end if
18 "$infile" 19 '$infile'
19 > "$outfile" 20 > '$outfile'
20 ]]> 21 ]]>
21 </command> 22 </command>
22 <inputs> 23 <inputs>
23 <param name="infile" type="data" format="txt" label="Input file"/> 24 <param name="infile" type="data" format="txt" label="Input file"/>
24 <conditional name="separator"> 25 <conditional name="separator">
83 84
84 with option -b and -s 5: 85 with option -b and -s 5:
85 86
86 5 # 6 7 8 9 0 1 2 3 4 87 5 # 6 7 8 9 0 1 2 3 4
87 88
88 @REFERENCES@
89 ]]> 89 ]]>
90 </help> 90 </help>
91 <expand macro="citations" /> 91 <expand macro="citations" />
92 </tool> 92 </tool>