Mercurial > repos > devteam > emboss_5
diff macros.xml @ 18:c2228166c035 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 commit 4812c313fd8762b11f7fd002436e3a93b4c67f00"
author | iuc |
---|---|
date | Fri, 20 Nov 2020 16:49:40 +0000 |
parents | bde3097ac0f6 |
children | 21a9fb508031 |
line wrap: on
line diff
--- a/macros.xml Tue Dec 03 02:12:56 2019 +0000 +++ b/macros.xml Fri Nov 20 16:49:40 2020 +0000 @@ -19,4 +19,27 @@ <yield /> </citations> </xml> + <xml name="regex_sanitizer"> + <sanitizer> + <valid initial="string.ascii_letters,string.digits"> + <add value="^"/> + <add value="$"/> + <add value="("/> + <add value=")"/> + <add value="|"/> + <add value="?"/> + <add value="*"/> + <add value="+"/> + <add value="{"/> + <add value="}"/> + <add value="\"/> + <add value="["/> + <add value="]"/> + <add value="."/> + <add value=","/> + </valid> + </sanitizer> + <validator type="empty_field" /> + <validator type="regex" message="Pattern must not end with backslash.">.*[^\\]$</validator> + </xml> </macros>