@@ -264,7 +264,7 @@ def check_all_types(
264
264
)
265
265
if _is_conditional_step (param_to_step , parm_id ):
266
266
src_typ = aslist (type_dict [src_dict [parm_id ].id ])
267
- snk_typ = type_dict [cast ( str , sink .id ) ]
267
+ snk_typ = type_dict [sink .id ]
268
268
if "null" not in src_typ :
269
269
src_typ = ["null" ] + cast (list [Any ], src_typ )
270
270
if (
@@ -288,7 +288,7 @@ def check_all_types(
288
288
for src in srcs_of_sink :
289
289
check_result = check_types (
290
290
type_dict [cast (str , src .id )],
291
- type_dict [cast ( str , sink .id ) ],
291
+ type_dict [sink .id ],
292
292
linkMerge ,
293
293
getattr (sink , "valueFrom" , None ),
294
294
)
@@ -411,6 +411,7 @@ def load_inputfile(
411
411
baseuri = cwl .file_uri (os .getcwd ()) + "/"
412
412
if loadingOptions is None :
413
413
loadingOptions = cwl .LoadingOptions ()
414
+
414
415
result , metadata = _inputfile_load (
415
416
doc ,
416
417
baseuri ,
@@ -479,10 +480,7 @@ def type_for_step_input(
479
480
cwl_utils .parser .utils .convert_stdstreams_to_files (step_run )
480
481
if step_run and step_run .inputs :
481
482
for step_input in step_run .inputs :
482
- if (
483
- cast (str , step_input .id ).split ("#" )[- 1 ]
484
- == cast (str , in_ .id ).split ("#" )[- 1 ]
485
- ):
483
+ if cast (str , step_input .id ).split ("#" )[- 1 ] == in_ .id .split ("#" )[- 1 ]:
486
484
input_type = step_input .type_
487
485
if step .scatter is not None and in_ .id in aslist (step .scatter ):
488
486
input_type = cwl .ArraySchema (items = input_type , type_ = "array" )
0 commit comments