changeset 55:9f27508afc8c draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 6ebc6405a002e28bce63fdcdb527a71e48fe9418
author iuc
date Tue, 06 Mar 2018 07:25:01 -0500
parents bbf9e52974b6
children 27e369f4407a
files macs2_callpeak.xml
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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