We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f62891 commit ed0e764Copy full SHA for ed0e764
lib/galaxy/tools/evaluation.py
@@ -348,7 +348,7 @@ def __sanitize_param_dict( self, param_dict ):
348
Note: this method follows the style of the similar populate calls, in that param_dict is modified in-place.
349
"""
350
# chromInfo is a filename, do not sanitize it.
351
- skip = [ 'chromInfo' ]
+ skip = [ 'chromInfo' ] + self.tool.template_macro_params.keys()
352
if not self.tool or not self.tool.options or self.tool.options.sanitize:
353
for key, value in param_dict.items():
354
if key not in skip:
0 commit comments