@@ -3759,7 +3759,7 @@ def fromDoc(
3759
3759
try :
3760
3760
default = load_field (
3761
3761
_doc .get ("default" ),
3762
- union_of_None_type_or_Any_type ,
3762
+ union_of_None_type_or_FileLoader_or_DirectoryLoader_or_Any_type ,
3763
3763
baseuri ,
3764
3764
loadingOptions ,
3765
3765
)
@@ -6785,7 +6785,7 @@ def fromDoc(
6785
6785
try :
6786
6786
default = load_field (
6787
6787
_doc .get ("default" ),
6788
- union_of_None_type_or_Any_type ,
6788
+ union_of_None_type_or_FileLoader_or_DirectoryLoader_or_Any_type ,
6789
6789
baseuri ,
6790
6790
loadingOptions ,
6791
6791
)
@@ -7395,7 +7395,7 @@ def fromDoc(
7395
7395
try :
7396
7396
hints = load_field (
7397
7397
_doc .get ("hints" ),
7398
- idmap_hints_union_of_None_type_or_array_of_Any_type ,
7398
+ idmap_hints_union_of_None_type_or_array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type ,
7399
7399
baseuri ,
7400
7400
loadingOptions ,
7401
7401
)
@@ -9605,7 +9605,7 @@ def fromDoc(
9605
9605
try :
9606
9606
hints = load_field (
9607
9607
_doc .get ("hints" ),
9608
- idmap_hints_union_of_None_type_or_array_of_Any_type ,
9608
+ idmap_hints_union_of_None_type_or_array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type ,
9609
9609
baseuri ,
9610
9610
loadingOptions ,
9611
9611
)
@@ -10956,7 +10956,7 @@ class Workflow(Process):
10956
10956
those steps. When a step produces output that will be consumed by a
10957
10957
second step, the first step is a dependency of the second step.
10958
10958
10959
- When there is a dependency, the workflow engine must execute the preceeding
10959
+ When there is a dependency, the workflow engine must execute the preceding
10960
10960
step and wait for it to successfully produce output before executing the
10961
10961
dependent step. If two steps are defined in the workflow graph that
10962
10962
are not directly or indirectly dependent, these steps are **independent**,
@@ -11130,7 +11130,7 @@ def fromDoc(
11130
11130
try :
11131
11131
hints = load_field (
11132
11132
_doc .get ("hints" ),
11133
- idmap_hints_union_of_None_type_or_array_of_Any_type ,
11133
+ idmap_hints_union_of_None_type_or_array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type ,
11134
11134
baseuri ,
11135
11135
loadingOptions ,
11136
11136
)
@@ -12241,9 +12241,11 @@ def save(
12241
12241
False ,
12242
12242
None ,
12243
12243
)
12244
- union_of_None_type_or_Any_type = _UnionLoader (
12244
+ union_of_None_type_or_FileLoader_or_DirectoryLoader_or_Any_type = _UnionLoader (
12245
12245
(
12246
12246
None_type ,
12247
+ FileLoader ,
12248
+ DirectoryLoader ,
12247
12249
Any_type ,
12248
12250
)
12249
12251
)
@@ -12310,15 +12312,36 @@ def save(
12310
12312
"class" ,
12311
12313
"None" ,
12312
12314
)
12313
- array_of_Any_type = _ArrayLoader (Any_type )
12314
- union_of_None_type_or_array_of_Any_type = _UnionLoader (
12315
+ union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type = _UnionLoader (
12316
+ (
12317
+ InlineJavascriptRequirementLoader ,
12318
+ SchemaDefRequirementLoader ,
12319
+ DockerRequirementLoader ,
12320
+ SoftwareRequirementLoader ,
12321
+ InitialWorkDirRequirementLoader ,
12322
+ EnvVarRequirementLoader ,
12323
+ ShellCommandRequirementLoader ,
12324
+ ResourceRequirementLoader ,
12325
+ SubworkflowFeatureRequirementLoader ,
12326
+ ScatterFeatureRequirementLoader ,
12327
+ MultipleInputFeatureRequirementLoader ,
12328
+ StepInputExpressionRequirementLoader ,
12329
+ Any_type ,
12330
+ )
12331
+ )
12332
+ array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type = _ArrayLoader (
12333
+ union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type
12334
+ )
12335
+ union_of_None_type_or_array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type = _UnionLoader (
12315
12336
(
12316
12337
None_type ,
12317
- array_of_Any_type ,
12338
+ array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type ,
12318
12339
)
12319
12340
)
12320
- idmap_hints_union_of_None_type_or_array_of_Any_type = _IdMapLoader (
12321
- union_of_None_type_or_array_of_Any_type , "class" , "None"
12341
+ idmap_hints_union_of_None_type_or_array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type = _IdMapLoader (
12342
+ union_of_None_type_or_array_of_union_of_InlineJavascriptRequirementLoader_or_SchemaDefRequirementLoader_or_DockerRequirementLoader_or_SoftwareRequirementLoader_or_InitialWorkDirRequirementLoader_or_EnvVarRequirementLoader_or_ShellCommandRequirementLoader_or_ResourceRequirementLoader_or_SubworkflowFeatureRequirementLoader_or_ScatterFeatureRequirementLoader_or_MultipleInputFeatureRequirementLoader_or_StepInputExpressionRequirementLoader_or_Any_type ,
12343
+ "class" ,
12344
+ "None" ,
12322
12345
)
12323
12346
union_of_None_type_or_CWLVersionLoader = _UnionLoader (
12324
12347
(
@@ -12575,6 +12598,12 @@ def save(
12575
12598
uri_union_of_None_type_or_strtype_or_array_of_strtype_False_False_2 = _URILoader (
12576
12599
union_of_None_type_or_strtype_or_array_of_strtype , False , False , 2
12577
12600
)
12601
+ union_of_None_type_or_Any_type = _UnionLoader (
12602
+ (
12603
+ None_type ,
12604
+ Any_type ,
12605
+ )
12606
+ )
12578
12607
array_of_WorkflowStepInputLoader = _ArrayLoader (WorkflowStepInputLoader )
12579
12608
idmap_in__array_of_WorkflowStepInputLoader = _IdMapLoader (
12580
12609
array_of_WorkflowStepInputLoader , "id" , "source"
@@ -12599,6 +12628,16 @@ def save(
12599
12628
None ,
12600
12629
)
12601
12630
)
12631
+ array_of_Any_type = _ArrayLoader (Any_type )
12632
+ union_of_None_type_or_array_of_Any_type = _UnionLoader (
12633
+ (
12634
+ None_type ,
12635
+ array_of_Any_type ,
12636
+ )
12637
+ )
12638
+ idmap_hints_union_of_None_type_or_array_of_Any_type = _IdMapLoader (
12639
+ union_of_None_type_or_array_of_Any_type , "class" , "None"
12640
+ )
12602
12641
union_of_strtype_or_CommandLineToolLoader_or_ExpressionToolLoader_or_WorkflowLoader = (
12603
12642
_UnionLoader (
12604
12643
(
0 commit comments