comparison cut.xml @ 3:37e1eb05b1b4 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 10052765d6b712cf7d38356af4251fcc38a339b6-dirty
author bgruening
date Fri, 26 Feb 2016 12:22:19 -0500
parents 5314e5d6f040
children 60edf2f8c28f
comparison
equal deleted inserted replaced
2:616efa22d193 3:37e1eb05b1b4
1 <tool id="tp_cut_tool" name="Cut" version="@BASE_VERSION@.0"> 1 <tool id="tp_cut_tool" name="Cut" version="@BASE_VERSION@.0">
2 <description>columns from a table</description> 2 <description>columns from a table (cut)</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
7 <version_command>cut --version | head -n 1</version_command> 7 <version_command>cut --version | head -n 1</version_command>
41 </param> 41 </param>
42 <when value="-f"> 42 <when value="-f">
43 <param name="list" type="data_column" data_ref="input" multiple="true" label="List of Fields" help="(-f)" /> 43 <param name="list" type="data_column" data_ref="input" multiple="true" label="List of Fields" help="(-f)" />
44 </when> 44 </when>
45 <when value="-c"> 45 <when value="-c">
46 <param name="list" type="text" size="20" value="" label="List of characters" help="These will be kept/discarded (depending on 'operation'). &lt;BR /&gt; Examples: 1,3,4 or 2-5"> 46 <param name="list" type="text" value="" label="List of characters" help="These will be kept/discarded (depending on 'operation'). &lt;BR /&gt; Examples: 1,3,4 or 2-5">
47 <sanitizer> 47 <sanitizer>
48 <valid initial="string.printable"> 48 <valid initial="string.printable">
49 <remove value="&apos;"/> 49 <remove value="&apos;"/>
50 </valid> 50 </valid>
51 </sanitizer> 51 </sanitizer>
52 </param> 52 </param>
53 </when> 53 </when>
54 <when value="-b"> 54 <when value="-b">
55 <param name="list" type="text" size="20" value="" label="List of Bytes" help="These will be kept/discarded (depending on 'operation'). &lt;BR /&gt; Examples: 1,3,4 or 2-5"> 55 <param name="list" type="text" value="" label="List of Bytes" help="These will be kept/discarded (depending on 'operation'). &lt;BR /&gt; Examples: 1,3,4 or 2-5">
56 <sanitizer> 56 <sanitizer>
57 <valid initial="string.printable"> 57 <valid initial="string.printable">
58 <remove value="&apos;"/> 58 <remove value="&apos;"/>
59 </valid> 59 </valid>
60 </sanitizer> 60 </sanitizer>