Skip to content

Commit

Permalink
Fix implicit conversion for mapped over inputs
Browse files Browse the repository at this point in the history
Fixes #17940
  • Loading branch information
mvdbeek committed Apr 9, 2024
1 parent ccaa937 commit 19099a9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/galaxy/tools/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ def wrap_input(input_values, input):
element_identifier = element_identifier_mapper.identifier(dataset, param_dict)
if element_identifier:
wrapper_kwds["identifier"] = element_identifier
wrapper_kwds["formats"] = input.formats
input_values[input.name] = DatasetFilenameWrapper(dataset, **wrapper_kwds)
elif isinstance(input, DataCollectionToolParameter):
dataset_collection = value
Expand Down

0 comments on commit 19099a9

Please sign in to comment.