Mercurial > repos > iuc > macs2
changeset 11:cb785e26207c 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:31 -0500 |
parents | f0b351e734b8 |
children | 38769345062e |
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: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