comparison replace_text_in_line.xml @ 18:1e974b82380d draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 0ba37c1f33eeb1c77b4d9363d681fe522d9f7fe7
author bgruening
date Tue, 27 Feb 2018 17:10:53 -0500
parents f2918761eaf3
children bed2226b90f7
comparison
equal deleted inserted replaced
17:f2918761eaf3 18:1e974b82380d
1 <?xml version="1.0" encoding="ISO-8859-1"?> 1 <tool id="tp_replace_in_line" name="Replace Text" version="@BASE_VERSION@.1">
2 <tool id="tp_replace_in_line" name="Replace Text" version="@BASE_VERSION@.0">
3 <description>in entire line</description> 2 <description>in entire line</description>
4 <macros> 3 <macros>
5 <import>macros.xml</import> 4 <import>macros.xml</import>
6 </macros> 5 </macros>
7 <requirements> 6 <requirements>
8 <requirement type="package" version="4.2.3.dev0">sed</requirement> 7 <requirement type="package" version="4.4">sed</requirement>
9 </requirements> 8 </requirements>
10 <version_command>sed --version | head -n 1</version_command> 9 <version_command>sed --version | head -n 1</version_command>
11 <command> 10 <command>
12 <![CDATA[ 11 <![CDATA[
13 sed 12 sed
14 -r 13 -r
15 --sandbox 14 --sandbox
16 's/$find_pattern/$replace_pattern/g' 15 's/$find_pattern/$replace_pattern/g'
17 '$infile' 16 '$infile'
18 > '$outfile' 17 > '$outfile'
19 ]]> 18 ]]>
20 19
21 </command> 20 </command>
22 <inputs> 21 <inputs>
23 <param format="txt" name="infile" type="data" label="File to process" /> 22 <param format="txt" name="infile" type="data" label="File to process" />