Previous changeset 10:f0b351e734b8 (2018-01-31) Next changeset 12:38769345062e (2018-03-22) |
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 6ebc6405a002e28bce63fdcdb527a71e48fe9418 |
modified:
macs2_callpeak.xml |
b |
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 |