# HG changeset patch # User iuc # Date 1520339131 18000 # Node ID cb785e26207cf2e36c67e7edbc997de08547b221 # Parent f0b351e734b8b705882ed831c2a0ad4244431acf planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 6ebc6405a002e28bce63fdcdb527a71e48fe9418 diff -r f0b351e734b8 -r cb785e26207c macs2_callpeak.xml --- a/macs2_callpeak.xml Wed Jan 31 15:12:13 2018 -0500 +++ b/macs2_callpeak.xml Tue Mar 06 07:25:31 2018 -0500 @@ -18,7 +18,7 @@ ## Treatment File(s) #if str($treatment.t_multi_select) == "Yes": - -t ${ ' '.join( map( lambda x:'"%s"' % ( x ), '$treatment.input_treatment_file' ) ) } + -t ${ ' '.join( [ "'%s'" % $x for $x in $treatment.input_treatment_file] ) } #else -t '$treatment.input_treatment_file' #end if @@ -27,7 +27,7 @@ #if str($control.c_select) == "Yes": #if str($control.c_multiple.c_multi_select) == "Yes": - -c ${ ' '.join( map( lambda x:'"%s"' % ( x ), '$control.c_multiple.input_control_file' ) ) } + -c ${ ' '.join( [ "'%s'" % $x for $x in $control.c_multiple.input_control_file] ) } #else -c '$control.c_multiple.input_control_file' #end if