Previous changeset 13:4eb02864e5df (2018-05-17) Next changeset 15:0c5239d1aa65 (2019-12-11) |
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meme commit 5dd1dbea49bab90b13c1b5f42a730843041609b7 |
modified:
fimo.xml |
b |
diff -r 4eb02864e5df -r c1a9a297ba8b fimo.xml --- a/fimo.xml Thu May 17 14:11:00 2018 -0400 +++ b/fimo.xml Wed Dec 12 02:50:48 2018 -0500 |
[ |
@@ -23,7 +23,7 @@ #if str( $options_type.motifs_cond.motif_selector) == 'yes': #for $motif in $options_type.motifs_cond.motifs: - --motif $motif.motif + --motif '$motif.motif' #end for #end if @@ -112,7 +112,10 @@ <when value="no"/> <when value="yes"> <repeat name="motifs" title="Supply input motif ID"> - <param name="motif" type="text" value="" label="Motif ID" /> + <param name="motif" type="text" value="" label="Specify motif by id"> + <validator type="empty_field" /> + <validator type="regex" message="Value may include alphanumeric characters.">[A-Za-z]+</validator> + </param> </repeat> </when> </conditional> |