comparison grep.xml @ 11:74a8bef53a00 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:15:37 -0500
parents 60edf2f8c28f
children 12615d397df7
comparison
equal deleted inserted replaced
10:e39fceb6ab85 11:74a8bef53a00
1 <tool id="tp_grep_tool" name="Search in textfiles" version="@BASE_VERSION@.0"> 1 <tool id="tp_grep_tool" name="Search in textfiles" version="@BASE_VERSION@.1">
2 <description>(grep)</description> 2 <description>(grep)</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <requirements> 6 <requirements>
7 <requirement type="package" version="2.14">grep</requirement> 7 <requirement type="package" version="2.14">grep</requirement>
8 <requirement type="package" version="4.2.3.dev0">sed</requirement><!-- for ansi2html.sh --> 8 <requirement type="package" version="4.4">sed</requirement><!-- for ansi2html.sh -->
9 </requirements> 9 </requirements>
10 <version_command>grep --version | head -n 1</version_command> 10 <version_command>grep --version | head -n 1</version_command>
11 <command> 11 <command>
12 <![CDATA[ 12 <![CDATA[
13 #if str($color) == "COLOR": 13 #if str($color) == "COLOR":
38 38
39 <param name="invert" type="select" label="that"> 39 <param name="invert" type="select" label="that">
40 <option value="">Match</option> 40 <option value="">Match</option>
41 <option value="-v">Don't Match</option> 41 <option value="-v">Don't Match</option>
42 </param> 42 </param>
43 43
44 <param name="regex_type" type="select" label="Type of regex"> 44 <param name="regex_type" type="select" label="Type of regex">
45 <option value="-G">Basic</option> 45 <option value="-G">Basic</option>
46 <option value="-P" selected="true">Perl</option> 46 <option value="-P" selected="true">Perl</option>
47 <option value="-E">Extended (egrep)</option> 47 <option value="-E">Extended (egrep)</option>
48 </param> 48 </param>
49 49
50 <param name="url_paste" type="text" label="Regular Expression" help="See below for more details"> 50 <param name="url_paste" type="text" label="Regular Expression" help="See below for more details">
51 <sanitizer> 51 <sanitizer>
52 <valid initial="string.printable"> 52 <valid initial="string.printable">
53 <remove value="&apos;"/> 53 <remove value="&apos;"/>
54 </valid> 54 </valid>