diff find_and_replace @ 21:0e3b611245f7 draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 9c4d4fe09cbbd818532d793d01d1cb16edbd496b-dirty"
author bgruening
date Sun, 15 Mar 2020 22:58:18 +0000
parents ec66f9d90ef0
children
line wrap: on
line diff
--- a/find_and_replace	Wed Apr 03 13:56:43 2019 -0400
+++ b/find_and_replace	Sun Mar 15 22:58:18 2020 +0000
@@ -65,7 +65,7 @@
 	$perl_program = <<EOF;
 	while ( <STDIN> ) {
 		chomp ;
-		my \@columns = split ;
+		my \@columns = split /\t/;
 
 		#not enough columns in this line - skip it
 		next if ( \@columns < $find_in_specific_column ) ;