Skip to content

Commit

Permalink
Fix command quoting and remove size from text input for Cut tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
blankenberg committed Oct 14, 2015
1 parent ee42fd0 commit 120ec61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/filters/cutWrapper.xml
@@ -1,8 +1,8 @@
<tool id="Cut1" name="Cut" version="1.0.2">
<description>columns from a table</description>
<command interpreter="perl">cutWrapper.pl $input "$columnList" $delimiter $out_file1</command>
<command interpreter="perl">cutWrapper.pl "${input}" "${columnList}" "${delimiter}" "${out_file1}"</command>
<inputs>
<param name="columnList" size="10" type="text" value="c1,c2" label="Cut columns"/>
<param name="columnList" type="text" value="c1,c2" label="Cut columns"/>
<param name="delimiter" type="select" label="Delimited by">
<option value="T">Tab</option>
<option value="Sp">Whitespace</option>
Expand Down

0 comments on commit 120ec61

Please sign in to comment.