@@ -216,7 +216,7 @@ def traverse(
216216 skip_command_line1 : bool ,
217217 skip_command_line2 : bool ,
218218) -> Tuple [Union [cwl .CommandLineTool , cwl .ExpressionTool , cwl .Workflow ], bool ]:
219- """Convert the given process and any subprocesess ."""
219+ """Convert the given process and any subprocesses ."""
220220 if not inside and isinstance (process , cwl .CommandLineTool ):
221221 process = expand_stream_shortcuts (process )
222222 wf_inputs = []
@@ -1488,7 +1488,7 @@ def traverse_CommandLineTool(
14881488 )
14891489 new_clt_step = copy .copy (
14901490 step
1491- ) # a deepcopy would be convienant , but params2.cwl gives it problems
1491+ ) # a deepcopy would be convenient , but params2.cwl gives it problems
14921492 new_clt_step .id = cast (str , new_clt_step .id ).split ("#" )[- 1 ]
14931493 new_clt_step .run = copy .copy (step .run )
14941494 new_clt_step .run .id = None
@@ -1515,7 +1515,7 @@ def traverse_CommandLineTool(
15151515 )
15161516 else :
15171517 raise Exception (
1518- "Unimplemented OutputParamter type: %s" ,
1518+ "Unimplemented OutputParameter type: %s" ,
15191519 type (new_outp ),
15201520 )
15211521 new_clt_step .in_ = copy .deepcopy (step .in_ )
@@ -1595,7 +1595,7 @@ def remove_JSReq(
15951595 process : Union [cwl .CommandLineTool , cwl .WorkflowStep , cwl .Workflow ],
15961596 skip_command_line1 : bool ,
15971597) -> None :
1598- """Since the InlineJavascriptRequiment is longer needed, remove it."""
1598+ """Since the InlineJavascriptRequirement is longer needed, remove it."""
15991599 if skip_command_line1 and isinstance (process , cwl .CommandLineTool ):
16001600 return
16011601 if process .hints :
@@ -1958,7 +1958,7 @@ def traverse_step(
19581958def workflow_step_to_WorkflowInputParameters (
19591959 step_ins : List [cwl .WorkflowStepInput ], parent : cwl .Workflow , except_in_id : str
19601960) -> List [cwl .WorkflowInputParameter ]:
1961- """Create WorkflowInputParametes to match the given WorkflowStep inputs."""
1961+ """Create WorkflowInputParameters to match the given WorkflowStep inputs."""
19621962 params = []
19631963 for inp in step_ins :
19641964 if not inp .id :
0 commit comments