@@ -110,6 +110,7 @@ $graph:
110
110
`outputs` field was incorrectly listed as optional.
111
111
* For multi-Process CWL documents, if no particular process is named then
112
112
the process with the `id` of `#main` is chosen.
113
+ * Added explicit defaults for [ResourceRequirement](#ResourceRequirement)s.
113
114
114
115
See also the [CWL Workflow Description, v1.1.0-dev1 changelog](Workflow.html#Changelog).
115
116
@@ -1071,7 +1072,7 @@ $graph:
1071
1072
1072
1073
It is an error if the value of any of these fields is negative.
1073
1074
1074
- If neither "min" nor "max" is specified for a resource, an implementation may provide a default .
1075
+ If neither "min" nor "max" is specified for a resource, use the default values below .
1075
1076
1076
1077
fields :
1077
1078
- name : class
@@ -1082,31 +1083,31 @@ $graph:
1082
1083
" _type " : " @vocab"
1083
1084
- name : coresMin
1084
1085
type : ["null", long, string, Expression]
1085
- doc : Minimum reserved number of CPU cores
1086
+ doc : Minimum reserved number of CPU cores (default is 1)
1086
1087
1087
1088
- name : coresMax
1088
1089
type : ["null", int, string, Expression]
1089
1090
doc : Maximum reserved number of CPU cores
1090
1091
1091
1092
- name : ramMin
1092
1093
type : ["null", long, string, Expression]
1093
- doc : Minimum reserved RAM in mebibytes (2**20)
1094
+ doc : Minimum reserved RAM in mebibytes (2**20) (default is 256)
1094
1095
1095
1096
- name : ramMax
1096
1097
type : ["null", long, string, Expression]
1097
1098
doc : Maximum reserved RAM in mebibytes (2**20)
1098
1099
1099
1100
- name : tmpdirMin
1100
1101
type : ["null", long, string, Expression]
1101
- doc : Minimum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20)
1102
+ doc : Minimum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20) (default is 1024)
1102
1103
1103
1104
- name : tmpdirMax
1104
1105
type : ["null", long, string, Expression]
1105
1106
doc : Maximum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20)
1106
1107
1107
1108
- name : outdirMin
1108
1109
type : ["null", long, string, Expression]
1109
- doc : Minimum reserved filesystem based storage for the designated output directory, in mebibytes (2**20)
1110
+ doc : Minimum reserved filesystem based storage for the designated output directory, in mebibytes (2**20) (default is 1024)
1110
1111
1111
1112
- name : outdirMax
1112
1113
type : ["null", long, string, Expression]
0 commit comments