changeset 2:bddc7c1070d2 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_column commit 62597aa4ecda3de4ebdf8794d83a494e32148b11
author bgruening
date Sat, 10 Dec 2016 15:51:55 -0500
parents b1914e537f3e
children 61e58789650e
files split_file_on_column.tar.gz split_file_on_column.xml tool_dependencies.xml
diffstat 3 files changed, 5 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
Binary file split_file_on_column.tar.gz has changed
--- a/split_file_on_column.xml	Wed Dec 23 03:50:34 2015 -0500
+++ b/split_file_on_column.xml	Sat Dec 10 15:51:55 2016 -0500
@@ -1,12 +1,12 @@
-<tool id="tp_split_on_column" name="Split file" version="0.2">
+<tool id="tp_split_on_column" name="Split file" version="0.3">
     <description>according to the values of a column</description>
     <requirements>
-        <requirement type="package" version="4.1.0">gnu_awk</requirement>
+        <requirement type="package" version="4.1.3">gawk</requirement>
     </requirements>
     <command>
 <![CDATA[
         mkdir tmp_out &&
-        awk -F'\t' '{print > "tmp_out/"\$$column".$infile.ext" }' $infile
+        awk -F'\t' '{print > "tmp_out/"\$$column".$infile.ext" }' '$infile'
 ]]>
     </command>
     <inputs>
@@ -69,4 +69,6 @@
 
 ]]>
     </help>
+    <citations>
+    </citations>
 </tool>
--- a/tool_dependencies.xml	Wed Dec 23 03:50:34 2015 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-<?xml version="1.0"?>
-<tool_dependency>
-    <package name="gnu_awk" version="4.1.0">
-        <repository changeset_revision="0f0bdef2f686" name="package_gnu_awk_4_1_0" owner="iuc" toolshed="https://testtoolshed.g2.bx.psu.edu" />
-    </package>
-</tool_dependency>