Skip to content

Commit ed0e764

Browse files
committed
Bugfix: Skip extra wrapping around template-style macros.
1 parent 7f62891 commit ed0e764

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/tools/evaluation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def __sanitize_param_dict( self, param_dict ):
348348
Note: this method follows the style of the similar populate calls, in that param_dict is modified in-place.
349349
"""
350350
# chromInfo is a filename, do not sanitize it.
351-
skip = [ 'chromInfo' ]
351+
skip = [ 'chromInfo' ] + self.tool.template_macro_params.keys()
352352
if not self.tool or not self.tool.options or self.tool.options.sanitize:
353353
for key, value in param_dict.items():
354354
if key not in skip:

0 commit comments

Comments
 (0)