# HG changeset patch # User kellrott # Date 1386272950 18000 # Node ID 71f6f91d5ca3210c983b22e6742eb0fe33fc5962 Uploaded diff -r 000000000000 -r 71f6f91d5ca3 regex_search/regex_search.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/regex_search/regex_search.xml Thu Dec 05 14:49:10 2013 -0500 @@ -0,0 +1,80 @@ + + Regular Expression search using the Python re module + $script_file + + + + + + + + + + + + + + + + + + + + + + + + + +Perform regular expression search using the Python re engine. You can find documentation on the Python regular +expression syntax `here <http://docs.python.org/2/library/re.html#regular-expression-syntax>`_ +This is very similar to the 'Select' tool that is included with Galaxy, however this version is powered by +Python's RE package, rather then grep, which should eliminate some of the minor differences between the versions of Grep +one would find in Mac or Linux. + +Example: +======== + Search String:: + + [^\s]+_\w+.* + + +Additional Options +================== + +Ignore Case: + Make searches case insensitive + +Return Misses: + Return lines that don't match the search string. + + +