# HG changeset patch # User iuc # Date 1520339101 18000 # Node ID 9f27508afc8c1dd285ed492e13b21a6f753b3f0d # Parent bbf9e52974b6a861e975148787258d93ff4171ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 6ebc6405a002e28bce63fdcdb527a71e48fe9418 diff -r bbf9e52974b6 -r 9f27508afc8c macs2_callpeak.xml --- a/macs2_callpeak.xml Wed Jan 31 15:11:52 2018 -0500 +++ b/macs2_callpeak.xml Tue Mar 06 07:25:01 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