Skip to content

Commit 3fbfa1b

Browse files
committed
more type fixes
1 parent 910f114 commit 3fbfa1b

6 files changed

+13
-20
lines changed

cwl_utils/cwl_v1_0_expression_refactor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1425,7 +1425,7 @@ def traverse_CommandLineTool(
14251425
new_clt_step = copy.copy(
14261426
step
14271427
) # a deepcopy would be convenient, but params2.cwl gives it problems
1428-
new_clt_step.id = cast(str, new_clt_step.id).split("#")[-1]
1428+
new_clt_step.id = new_clt_step.id.split("#")[-1]
14291429
new_clt_step.run = copy.copy(step.run)
14301430
new_clt_step.run.id = None
14311431
remove_JSReq(new_clt_step.run, skip_command_line1)

cwl_utils/cwl_v1_1_expression_refactor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1425,7 +1425,7 @@ def traverse_CommandLineTool(
14251425
new_clt_step = copy.copy(
14261426
step
14271427
) # a deepcopy would be convenient, but params2.cwl gives it problems
1428-
new_clt_step.id = cast(str, new_clt_step.id).split("#")[-1]
1428+
new_clt_step.id = new_clt_step.id.split("#")[-1]
14291429
new_clt_step.run = copy.copy(step.run)
14301430
new_clt_step.run.id = None
14311431
remove_JSReq(new_clt_step.run, skip_command_line1)

cwl_utils/cwl_v1_2_expression_refactor.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def process_workflow_inputs_and_outputs(
696696
)
697697
target_type = copy.deepcopy(param2.type_)
698698
if isinstance(target_type, cwl.OutputArraySchema):
699-
target_type.name = None
699+
target_type.name = ""
700700
target = cwl.WorkflowInputParameter(id=None, type_=target_type)
701701
if not isinstance(param2.outputSource, list):
702702
sources = param2.outputSource.split("#")[-1]
@@ -1520,7 +1520,7 @@ def traverse_CommandLineTool(
15201520
new_clt_step = copy.copy(
15211521
step
15221522
) # a deepcopy would be convenient, but params2.cwl gives it problems
1523-
new_clt_step.id = cast(str, new_clt_step.id).split("#")[-1]
1523+
new_clt_step.id = new_clt_step.id.split("#")[-1]
15241524
new_clt_step.run = copy.copy(step.run)
15251525
new_clt_step.run.id = None
15261526
remove_JSReq(new_clt_step.run, skip_command_line1)

cwl_utils/parser/cwl_v1_0_utils.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def check_all_types(
214214
for src in srcs_of_sink:
215215
check_result = check_types(
216216
type_dict[cast(str, src.id)],
217-
type_dict[cast(str, sink.id)],
217+
type_dict[sink.id],
218218
linkMerge,
219219
getattr(sink, "valueFrom", None),
220220
)
@@ -312,6 +312,7 @@ def load_inputfile(
312312
baseuri = cwl.file_uri(os.getcwd()) + "/"
313313
if loadingOptions is None:
314314
loadingOptions = cwl.LoadingOptions()
315+
315316
result, metadata = _inputfile_load(
316317
doc,
317318
baseuri,
@@ -380,10 +381,7 @@ def type_for_step_input(
380381
cwl_utils.parser.utils.convert_stdstreams_to_files(step_run)
381382
if step_run and step_run.inputs:
382383
for step_input in step_run.inputs:
383-
if (
384-
cast(str, step_input.id).split("#")[-1]
385-
== cast(str, in_.id).split("#")[-1]
386-
):
384+
if cast(str, step_input.id).split("#")[-1] == in_.id.split("#")[-1]:
387385
input_type = step_input.type_
388386
if step.scatter is not None and in_.id in aslist(step.scatter):
389387
input_type = cwl.ArraySchema(items=input_type, type_="array")

cwl_utils/parser/cwl_v1_1_utils.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def check_all_types(
214214
for src in srcs_of_sink:
215215
check_result = check_types(
216216
type_dict[cast(str, src.id)],
217-
type_dict[cast(str, sink.id)],
217+
type_dict[sink.id],
218218
linkMerge,
219219
getattr(sink, "valueFrom", None),
220220
)
@@ -397,10 +397,7 @@ def type_for_step_input(
397397
cwl_utils.parser.utils.convert_stdstreams_to_files(step_run)
398398
if step_run and step_run.inputs:
399399
for step_input in step_run.inputs:
400-
if (
401-
cast(str, step_input.id).split("#")[-1]
402-
== cast(str, in_.id).split("#")[-1]
403-
):
400+
if cast(str, step_input.id).split("#")[-1] == in_.id.split("#")[-1]:
404401
input_type = step_input.type_
405402
if step.scatter is not None and in_.id in aslist(step.scatter):
406403
input_type = cwl.ArraySchema(items=input_type, type_="array")

cwl_utils/parser/cwl_v1_2_utils.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def check_all_types(
264264
)
265265
if _is_conditional_step(param_to_step, parm_id):
266266
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]
268268
if "null" not in src_typ:
269269
src_typ = ["null"] + cast(list[Any], src_typ)
270270
if (
@@ -288,7 +288,7 @@ def check_all_types(
288288
for src in srcs_of_sink:
289289
check_result = check_types(
290290
type_dict[cast(str, src.id)],
291-
type_dict[cast(str, sink.id)],
291+
type_dict[sink.id],
292292
linkMerge,
293293
getattr(sink, "valueFrom", None),
294294
)
@@ -411,6 +411,7 @@ def load_inputfile(
411411
baseuri = cwl.file_uri(os.getcwd()) + "/"
412412
if loadingOptions is None:
413413
loadingOptions = cwl.LoadingOptions()
414+
414415
result, metadata = _inputfile_load(
415416
doc,
416417
baseuri,
@@ -479,10 +480,7 @@ def type_for_step_input(
479480
cwl_utils.parser.utils.convert_stdstreams_to_files(step_run)
480481
if step_run and step_run.inputs:
481482
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]:
486484
input_type = step_input.type_
487485
if step.scatter is not None and in_.id in aslist(step.scatter):
488486
input_type = cwl.ArraySchema(items=input_type, type_="array")

0 commit comments

Comments
 (0)