# HG changeset patch # User geert-vandeweyer # Date 1392298636 18000 # Node ID fd6b71c81011888b6c640153c7fe95cc04b79a75 Uploaded diff -r 000000000000 -r fd6b71c81011 GrepFile.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GrepFile.xml Thu Feb 13 08:37:16 2014 -0500 @@ -0,0 +1,64 @@ + + + GrepFile.pl + -i "$input" + -o "$output" + + ## perl/case triggers + $perl + + ## return extra lines after the match (eg fasta/fastq grepping) + #if $extralines.extra == "true": + -A $extralines.nr + #end if + + ## grep from file or grep from provided pattern + #if $PatSource.fromfile == "true": + -t "file" + -f "$PatSource.patternfile" + #else: + -t "single" + -f "$PatSource.pattern" + #end if + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +**What it does** + +This tool extends the grepping options available in galaxy. It allowes extracting lines following a match, grepping from a file of patterns, and perl-based matching. + + +