Mercurial > repos > iuc > macs2
comparison macs2_callpeak.xml @ 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 |
comparison
equal
deleted
inserted
replaced
10:f0b351e734b8 | 11:cb785e26207c |
---|---|
16 --name 'MACS2' | 16 --name 'MACS2' |
17 | 17 |
18 ## Treatment File(s) | 18 ## Treatment File(s) |
19 | 19 |
20 #if str($treatment.t_multi_select) == "Yes": | 20 #if str($treatment.t_multi_select) == "Yes": |
21 -t ${ ' '.join( map( lambda x:'"%s"' % ( x ), '$treatment.input_treatment_file' ) ) } | 21 -t ${ ' '.join( [ "'%s'" % $x for $x in $treatment.input_treatment_file] ) } |
22 #else | 22 #else |
23 -t '$treatment.input_treatment_file' | 23 -t '$treatment.input_treatment_file' |
24 #end if | 24 #end if |
25 | 25 |
26 ## Control File(s) | 26 ## Control File(s) |
27 | 27 |
28 #if str($control.c_select) == "Yes": | 28 #if str($control.c_select) == "Yes": |
29 #if str($control.c_multiple.c_multi_select) == "Yes": | 29 #if str($control.c_multiple.c_multi_select) == "Yes": |
30 -c ${ ' '.join( map( lambda x:'"%s"' % ( x ), '$control.c_multiple.input_control_file' ) ) } | 30 -c ${ ' '.join( [ "'%s'" % $x for $x in $control.c_multiple.input_control_file] ) } |
31 #else | 31 #else |
32 -c '$control.c_multiple.input_control_file' | 32 -c '$control.c_multiple.input_control_file' |
33 #end if | 33 #end if |
34 #end if | 34 #end if |
35 | 35 |