diff --git a/pom.xml b/pom.xml
index 35ec2597..ff9719dd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,8 @@
jarCommon Workflow Language SDKSchema Salad for parsing documents corresponding to the https://w3id.org/cwl/cwl# schema.]]>
- 1.2.0-SNAPSHOT
+ 2.0.0
+ https://www.commonwl.org/3.19.0UTF-8
@@ -18,6 +19,18 @@
https://www.apache.org/licenses/LICENSE-2.0.txt
+
+
+ Michael R. Crusoe
+ mrc@commonwl.org
+ Common Workflow Language, a member project of Software Freedom Conservancy, Inc.
+
+
+
+ scm:git:git://github.com/common-workflow-language/cwljava.git
+ scm:git:ssh://github.com/common-workflow-language/cwljava.git
+ https://github.com/common-workflow-language/cwljava/tree/cwl-1.2.0/
+
@@ -51,9 +64,14 @@
org.apache.maven.pluginsmaven-javadoc-plugin
- 3.12.0
-
-
+ 3.12.0
+ attach-javadocsjar
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+ 3.3.1
+ attach-sourcesjar-no-forkorg.apache.maven.plugins
@@ -107,6 +125,73 @@
+
+ deployment
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+ 3.10.1
+
+
+ attach-javadocs
+
+ jar
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+ 3.3.1
+
+
+ attach-sources
+
+ jar-no-fork
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-gpg-plugin
+ 3.2.8
+
+
+ ${gpg.keyname}
+
+
+ --pinentry-mode
+ loopback
+
+
+
+
+ sign-artifacts
+ verify
+
+ sign
+
+
+
+
+
+ org.sonatype.central
+ central-publishing-maven-plugin
+ 0.9.0
+ true
+
+ central
+ true
+ uploaded
+
+
+
+
+ github
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameter.java
index 950f71bd..410b3a48 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameter.java
@@ -65,7 +65,7 @@ public interface CommandInputParameter extends InputParameter, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -127,7 +127,7 @@ public interface CommandInputParameter extends InputParameter, Saveable {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameterImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameterImpl.java
index 6d30b778..ed59f1f2 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameterImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputParameterImpl.java
@@ -86,7 +86,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -168,7 +168,7 @@ public Object getFormat() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordField.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordField.java
index 7b51b9d0..0d8ff342 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordField.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordField.java
@@ -80,7 +80,7 @@ public interface CommandInputRecordField extends InputRecordField, CommandLineBi
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -135,7 +135,7 @@ public interface CommandInputRecordField extends InputRecordField, CommandLineBi
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordFieldImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordFieldImpl.java
index bdc8c333..4521f10e 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordFieldImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandInputRecordFieldImpl.java
@@ -111,7 +111,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -181,7 +181,7 @@ public Object getFormat() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBinding.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBinding.java
index b1c37c5f..f73e19ac 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBinding.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBinding.java
@@ -21,8 +21,8 @@
* Auto-generated interface for https://w3id.org/cwl/cwl#CommandLineBinding This interface is implemented by {@link CommandLineBindingImpl}
When listed under `inputBinding` in the input schema, the term
- "value" refers to the the corresponding value in the input object. For
- binding objects listed in `CommandLineTool.arguments`, the term "value"
+ "value" refers to the the corresponding value in the input object. For
+ binding objects listed in `CommandLineTool.arguments`, the term "value"
refers to the effective value after evaluating `valueFrom`.
The binding behavior when building the command line depends on the data
@@ -71,7 +71,7 @@ public interface CommandLineBinding extends InputBinding, Saveable {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBindingImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBindingImpl.java
index 6e7a6deb..023e4788 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBindingImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineBindingImpl.java
@@ -24,8 +24,8 @@
* Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandLineBinding
When listed under `inputBinding` in the input schema, the term
- "value" refers to the the corresponding value in the input object. For
- binding objects listed in `CommandLineTool.arguments`, the term "value"
+ "value" refers to the the corresponding value in the input object. For
+ binding objects listed in `CommandLineTool.arguments`, the term "value"
refers to the effective value after evaluating `valueFrom`.
The binding behavior when building the command line depends on the data
@@ -82,7 +82,7 @@ public java.util.Map getExtensionFields() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineTool.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineTool.java
index 56602b42..387e1bd0 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineTool.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineTool.java
@@ -150,7 +150,7 @@ public interface CommandLineTool extends Process, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#CommandLineTool/stdin
*
- * A path to a file whose contents must be piped into the command's
+ * A path to a file whose contents must be piped into the command's
* standard input stream.
* *
*/
@@ -159,7 +159,7 @@ public interface CommandLineTool extends Process, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#CommandLineTool/stderr
*
- * Capture the command's standard error stream to a file written to
+ * Capture the command's standard error stream to a file written to
* the designated output directory.
*
* If `stderr` is a string, it specifies the file name to use.
@@ -175,7 +175,7 @@ public interface CommandLineTool extends Process, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#CommandLineTool/stdout
*
- * Capture the command's standard output stream to a file written to
+ * Capture the command's standard output stream to a file written to
* the designated output directory.
*
* If `stdout` is a string, it specifies the file name to use.
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineToolImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineToolImpl.java
index 09b01b2b..e7c3ac24 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineToolImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandLineToolImpl.java
@@ -216,7 +216,7 @@ public java.util.Optional> getArguments() {
/**
* Getter for property https://w3id.org/cwl/cwl#CommandLineTool/stdin
*
- * A path to a file whose contents must be piped into the command's
+ * A path to a file whose contents must be piped into the command's
* standard input stream.
* *
*/
@@ -230,7 +230,7 @@ public Object getStdin() {
/**
* Getter for property https://w3id.org/cwl/cwl#CommandLineTool/stderr
*
- * Capture the command's standard error stream to a file written to
+ * Capture the command's standard error stream to a file written to
* the designated output directory.
*
* If `stderr` is a string, it specifies the file name to use.
@@ -251,7 +251,7 @@ public Object getStderr() {
/**
* Getter for property https://w3id.org/cwl/cwl#CommandLineTool/stdout
*
- * Capture the command's standard output stream to a file written to
+ * Capture the command's standard output stream to a file written to
* the designated output directory.
*
* If `stdout` is a string, it specifies the file name to use.
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBinding.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBinding.java
index 0eaf3c1a..019a06db 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBinding.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBinding.java
@@ -42,7 +42,7 @@ public interface CommandOutputBinding extends LoadContents, Saveable {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
@@ -75,9 +75,9 @@ public interface CommandOutputBinding extends LoadContents, Saveable {
* match and return files/directories which actually exist.
*
* If the value of glob is a relative path pattern (does not
- * begin with a slash '/') then it is resolved relative to the
+ * begin with a slash '/') then it is resolved relative to the
* output directory. If the value of the glob is an absolute
- * path pattern (it does begin with a slash '/') then it must
+ * path pattern (it does begin with a slash '/') then it must
* refer to a path within the output directory. It is an error
* if any glob resolves to a path outside the output directory.
* Specifically this means globs that resolve to paths outside the output
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBindingImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBindingImpl.java
index cadccac1..597ac2e8 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBindingImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputBindingImpl.java
@@ -53,7 +53,7 @@ public java.util.Map getExtensionFields() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
@@ -96,9 +96,9 @@ public java.util.Optional getLoadListing() {
* match and return files/directories which actually exist.
*
* If the value of glob is a relative path pattern (does not
- * begin with a slash '/') then it is resolved relative to the
+ * begin with a slash '/') then it is resolved relative to the
* output directory. If the value of the glob is an absolute
- * path pattern (it does begin with a slash '/') then it must
+ * path pattern (it does begin with a slash '/') then it must
* refer to a path within the output directory. It is an error
* if any glob resolves to a path outside the output directory.
* Specifically this means globs that resolve to paths outside the output
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameter.java
index 86153645..72ae65c2 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameter.java
@@ -65,7 +65,7 @@ public interface CommandOutputParameter extends OutputParameter, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameterImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameterImpl.java
index e39a9a03..b0b445e8 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameterImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputParameterImpl.java
@@ -86,7 +86,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordField.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordField.java
index 538ee909..e26042b5 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordField.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordField.java
@@ -80,7 +80,7 @@ public interface CommandOutputRecordField extends OutputRecordField, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordFieldImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordFieldImpl.java
index bf765d25..39b9f786 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordFieldImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/CommandOutputRecordFieldImpl.java
@@ -111,7 +111,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/Directory.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/Directory.java
index 5742e263..44fb4f24 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/Directory.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/Directory.java
@@ -109,8 +109,8 @@ public interface Directory extends Saveable {
* `opendir(2)` syscall.
*
* If the `path` contains [POSIX shell metacharacters](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02)
- * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
- * ``, ``, and ``) or characters
+ * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
+ * `<space>`, `<tab>`, and `<newline>`) or characters
* [not allowed](http://www.iana.org/assignments/idna-tables-6.3.0/idna-tables-6.3.0.xhtml)
* for [Internationalized Domain Names for Applications](https://tools.ietf.org/html/rfc6452)
* then implementations may terminate the process with a
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/DirectoryImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/DirectoryImpl.java
index 0bcc3dd2..ebfc1eba 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/DirectoryImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/DirectoryImpl.java
@@ -130,8 +130,8 @@ public java.util.Optional getLocation() {
* `opendir(2)` syscall.
*
* If the `path` contains [POSIX shell metacharacters](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02)
- * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
- * ``, ``, and ``) or characters
+ * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
+ * `<space>`, `<tab>`, and `<newline>`) or characters
* [not allowed](http://www.iana.org/assignments/idna-tables-6.3.0/idna-tables-6.3.0.xhtml)
* for [Internationalized Domain Names for Applications](https://tools.ietf.org/html/rfc6452)
* then implementations may terminate the process with a
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirement.java
index 1424e698..d9d065a5 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirement.java
@@ -68,7 +68,7 @@ concerns of the implicit hidden execution point (For further discussion, see
If [EnvVarRequirement](#EnvVarRequirement) is specified alongside a
DockerRequirement, the environment variables must be provided to Docker
- using `--env` or `--env-file` and interact with the container's preexisting
+ using `--env` or `--env-file` and interact with the container's preexisting
environment as defined by Docker.
*/
@@ -80,7 +80,7 @@ public interface DockerRequirement extends ProcessRequirement, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#DockerRequirement/class
*
- * Always 'DockerRequirement' *
+ * Always 'DockerRequirement' *
*/
DockerRequirement_class getClass_();
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirementImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirementImpl.java
index 17290703..3f132d70 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirementImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/DockerRequirementImpl.java
@@ -71,7 +71,7 @@ concerns of the implicit hidden execution point (For further discussion, see
If [EnvVarRequirement](#EnvVarRequirement) is specified alongside a
DockerRequirement, the environment variables must be provided to Docker
- using `--env` or `--env-file` and interact with the container's preexisting
+ using `--env` or `--env-file` and interact with the container's preexisting
environment as defined by Docker.
*/
@@ -91,7 +91,7 @@ public java.util.Map getExtensionFields() {
/**
* Getter for property https://w3id.org/cwl/cwl#DockerRequirement/class
*
- * Always 'DockerRequirement' *
+ * Always 'DockerRequirement' *
*/
public DockerRequirement_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/EnvVarRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/EnvVarRequirement.java
index e06f7d2b..adbc73a3 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/EnvVarRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/EnvVarRequirement.java
@@ -31,7 +31,7 @@ public interface EnvVarRequirement extends ProcessRequirement, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#EnvVarRequirement/class
*
+ * Always 'EnvVarRequirement' *
*/
public EnvVarRequirement_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameter.java
index f0028d09..614d46ab 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameter.java
@@ -64,7 +64,7 @@ public interface ExpressionToolOutputParameter extends OutputParameter, Saveable
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameterImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameterImpl.java
index c2dc1a63..5bca916e 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameterImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ExpressionToolOutputParameterImpl.java
@@ -85,7 +85,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/FieldBase.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/FieldBase.java
index 392c67ed..ee318343 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/FieldBase.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/FieldBase.java
@@ -57,7 +57,7 @@ public interface FieldBase extends Labeled, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/File.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/File.java
index 2127913a..2bf6414a 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/File.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/File.java
@@ -37,8 +37,8 @@ runtime environment of a command line tool execution (for command line tool
outputs).
If no `location` or `path` is specified, a file object must specify
- `contents` with the UTF-8 text content of the file. This is a "file
- literal". File literals do not correspond to external resources, but are
+ `contents` with the UTF-8 text content of the file. This is a "file
+ literal". File literals do not correspond to external resources, but are
created on disk with `contents` with when needed for a executing a tool.
Where appropriate, expressions can return file literals to define new files
on a runtime. The maximum size of `contents` is 64 kilobytes.
@@ -136,8 +136,8 @@ public interface File extends Saveable {
* field to `location`, and remove the `path` field.
*
* If the `path` contains [POSIX shell metacharacters](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02)
- * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
- * ``, ``, and ``) or characters
+ * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
+ * `<space>`, `<tab>`, and `<newline>`) or characters
* [not allowed](http://www.iana.org/assignments/idna-tables-6.3.0/idna-tables-6.3.0.xhtml)
* for [Internationalized Domain Names for Applications](https://tools.ietf.org/html/rfc6452)
* then implementations may terminate the process with a
@@ -168,7 +168,7 @@ public interface File extends Saveable {
* Getter for property https://w3id.org/cwl/cwl#File/dirname
*
* The name of the directory containing file, that is, the path leading up
- * to the final slash in the path such that `dirname + '/' + basename ==
+ * to the final slash in the path such that `dirname + '/' + basename ==
* path`.
*
* The implementation must set this field based on the value of `path`
@@ -212,7 +212,7 @@ public interface File extends Saveable {
* Getter for property https://w3id.org/cwl/cwl#File/checksum
*
* Optional hash code for validating file integrity. Currently must be in the form
- * "sha1$ + hexadecimal string" using the SHA-1 algorithm.
+ * "sha1$ + hexadecimal string" using the SHA-1 algorithm.
* *
@@ -270,7 +270,7 @@ public interface File extends Saveable {
*
* If `loadContents` of `inputBinding` or `outputBinding` is true and
* `location` is valid, the implementation must read up to the first 64
- * KiB of text from the file and place it in the "contents" field.
+ * KiB of text from the file and place it in the "contents" field.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/FileImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/FileImpl.java
index 1d9098d1..9f53483f 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/FileImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/FileImpl.java
@@ -40,8 +40,8 @@ runtime environment of a command line tool execution (for command line tool
outputs).
If no `location` or `path` is specified, a file object must specify
- `contents` with the UTF-8 text content of the file. This is a "file
- literal". File literals do not correspond to external resources, but are
+ `contents` with the UTF-8 text content of the file. This is a "file
+ literal". File literals do not correspond to external resources, but are
created on disk with `contents` with when needed for a executing a tool.
Where appropriate, expressions can return file literals to define new files
on a runtime. The maximum size of `contents` is 64 kilobytes.
@@ -157,8 +157,8 @@ public java.util.Optional getLocation() {
* field to `location`, and remove the `path` field.
*
* If the `path` contains [POSIX shell metacharacters](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02)
- * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
- * ``, ``, and ``) or characters
+ * (`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\`, `"`, `'`,
+ * `<space>`, `<tab>`, and `<newline>`) or characters
* [not allowed](http://www.iana.org/assignments/idna-tables-6.3.0/idna-tables-6.3.0.xhtml)
* for [Internationalized Domain Names for Applications](https://tools.ietf.org/html/rfc6452)
* then implementations may terminate the process with a
@@ -199,7 +199,7 @@ public java.util.Optional getBasename() {
* Getter for property https://w3id.org/cwl/cwl#File/dirname
*
* The name of the directory containing file, that is, the path leading up
- * to the final slash in the path such that `dirname + '/' + basename ==
+ * to the final slash in the path such that `dirname + '/' + basename ==
* path`.
*
* The implementation must set this field based on the value of `path`
@@ -258,7 +258,7 @@ public java.util.Optional getNameext() {
* Getter for property https://w3id.org/cwl/cwl#File/checksum
*
* Optional hash code for validating file integrity. Currently must be in the form
- * "sha1$ + hexadecimal string" using the SHA-1 algorithm.
+ * "sha1$ + hexadecimal string" using the SHA-1 algorithm.
* *
@@ -336,7 +336,7 @@ public java.util.Optional getFormat() {
*
* If `loadContents` of `inputBinding` or `outputBinding` is true and
* `location` is valid, the implementation must read up to the first 64
- * KiB of text from the file and place it in the "contents" field.
+ * KiB of text from the file and place it in the "contents" field.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirement.java
index 52ce795e..993b1cdd 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirement.java
@@ -40,7 +40,7 @@ public interface InitialWorkDirRequirement extends ProcessRequirement, Saveable
* designated output directory prior to executing the command line tool.
*
* May be an expression. If so, the expression return value must validate as
- * `{type: array, items: ["null", File, File[], Directory, Directory[], Dirent]}`.
+ * `{type: array, items: ["null", File, File[], Directory, Directory[], Dirent]}`.
*
* Files or Directories which are listed in the input parameters and
* appear in the `InitialWorkDirRequirement` listing must have their
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirementImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirementImpl.java
index 905e7ba9..585a6681 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirementImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InitialWorkDirRequirementImpl.java
@@ -56,7 +56,7 @@ public InitialWorkDirRequirement_class getClass_() {
* designated output directory prior to executing the command line tool.
*
* May be an expression. If so, the expression return value must validate as
- * `{type: array, items: ["null", File, File[], Directory, Directory[], Dirent]}`.
+ * `{type: array, items: ["null", File, File[], Directory, Directory[], Dirent]}`.
*
* Files or Directories which are listed in the input parameters and
* appear in the `InitialWorkDirRequirement` listing must have their
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InlineJavascriptRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InlineJavascriptRequirement.java
index 20cb3830..ce361717 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InlineJavascriptRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InlineJavascriptRequirement.java
@@ -32,7 +32,7 @@ public interface InlineJavascriptRequirement extends ProcessRequirement, Saveabl
/**
* Getter for property https://w3id.org/cwl/cwl#InlineJavascriptRequirement/class
*
+ * Always 'InplaceUpdateRequirement' *
*/
public InplaceUpdateRequirement_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBinding.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBinding.java
index 2c2d4e94..7fceba16 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBinding.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBinding.java
@@ -35,7 +35,7 @@ public interface InputBinding extends Saveable {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBindingImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBindingImpl.java
index 6623cc74..79bd3638 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBindingImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputBindingImpl.java
@@ -46,7 +46,7 @@ public java.util.Map getExtensionFields() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputParameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputParameter.java
index 82310a9c..e3d87d6b 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputParameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputParameter.java
@@ -57,7 +57,7 @@ public interface InputParameter extends Parameter, InputFormat, LoadContents, Sa
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -119,7 +119,7 @@ public interface InputParameter extends Parameter, InputFormat, LoadContents, Sa
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordField.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordField.java
index 9e26261e..4da330ac 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordField.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordField.java
@@ -80,7 +80,7 @@ public interface InputRecordField extends CWLRecordField, FieldBase, InputFormat
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -135,7 +135,7 @@ public interface InputRecordField extends CWLRecordField, FieldBase, InputFormat
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordFieldImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordFieldImpl.java
index 3898945e..9dfadc92 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordFieldImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/InputRecordFieldImpl.java
@@ -111,7 +111,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -181,7 +181,7 @@ public Object getFormat() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadContents.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadContents.java
index 07930367..c3433e39 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadContents.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadContents.java
@@ -31,7 +31,7 @@ public interface LoadContents extends Saveable {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadListingRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadListingRequirement.java
index c9f88690..056180cb 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadListingRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/LoadListingRequirement.java
@@ -31,7 +31,7 @@ public interface LoadListingRequirement extends ProcessRequirement, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#LoadListingRequirement/class
*
+ * Always 'NetworkAccess' *
*/
public NetworkAccess_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputParameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputParameter.java
index 7ff65a02..eddf67a2 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputParameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputParameter.java
@@ -57,7 +57,7 @@ public interface OutputParameter extends Parameter, OutputFormat, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordField.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordField.java
index 57cc62a4..7fa04694 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordField.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordField.java
@@ -80,7 +80,7 @@ public interface OutputRecordField extends CWLRecordField, FieldBase, OutputForm
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordFieldImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordFieldImpl.java
index 4d98b3c5..f43a03e9 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordFieldImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/OutputRecordFieldImpl.java
@@ -111,7 +111,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/Parameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/Parameter.java
index 70944268..0c69293a 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/Parameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/Parameter.java
@@ -59,7 +59,7 @@ public interface Parameter extends FieldBase, Documented, Identified, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirement.java
index 469c950e..5d7e16a9 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirement.java
@@ -21,24 +21,24 @@
* Auto-generated interface for https://w3id.org/cwl/cwl#ResourceRequirement This interface is implemented by {@link ResourceRequirementImpl}
Specify basic hardware resource requirements.
- "min" is the minimum amount of a resource that must be reserved to schedule
- a job. If "min" cannot be satisfied, the job should not be run.
+ "min" is the minimum amount of a resource that must be reserved to schedule
+ a job. If "min" cannot be satisfied, the job should not be run.
- "max" is the maximum amount of a resource that the job shall be permitted
+ "max" is the maximum amount of a resource that the job shall be permitted
to use. If a node has sufficient resources, multiple jobs may be scheduled
- on a single node provided each job's "max" resource requirements are
- met. If a job attempts to exceed its "max" resource allocation, an
+ on a single node provided each job's "max" resource requirements are
+ met. If a job attempts to exceed its "max" resource allocation, an
implementation may deny additional resources, which may result in job
failure.
- If "min" is specified but "max" is not, then "max" == "min"
- If "max" is specified by "min" is not, then "min" == "max".
+ If "min" is specified but "max" is not, then "max" == "min"
+ If "max" is specified by "min" is not, then "min" == "max".
- It is an error if max < min.
+ It is an error if max < min.
It is an error if the value of any of these fields is negative.
- If neither "min" nor "max" is specified for a resource, use the default values below.
+ If neither "min" nor "max" is specified for a resource, use the default values below.
*/
public interface ResourceRequirement extends ProcessRequirement, Saveable {
@@ -49,7 +49,7 @@ public interface ResourceRequirement extends ProcessRequirement, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#ResourceRequirement/class
*
- * Always 'ResourceRequirement' *
+ * Always 'ResourceRequirement' *
*/
ResourceRequirement_class getClass_();
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirementImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirementImpl.java
index 8b9de21d..0deae6e7 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirementImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ResourceRequirementImpl.java
@@ -24,24 +24,24 @@
* Auto-generated class implementation for https://w3id.org/cwl/cwl#ResourceRequirement
Specify basic hardware resource requirements.
- "min" is the minimum amount of a resource that must be reserved to schedule
- a job. If "min" cannot be satisfied, the job should not be run.
+ "min" is the minimum amount of a resource that must be reserved to schedule
+ a job. If "min" cannot be satisfied, the job should not be run.
- "max" is the maximum amount of a resource that the job shall be permitted
+ "max" is the maximum amount of a resource that the job shall be permitted
to use. If a node has sufficient resources, multiple jobs may be scheduled
- on a single node provided each job's "max" resource requirements are
- met. If a job attempts to exceed its "max" resource allocation, an
+ on a single node provided each job's "max" resource requirements are
+ met. If a job attempts to exceed its "max" resource allocation, an
implementation may deny additional resources, which may result in job
failure.
- If "min" is specified but "max" is not, then "max" == "min"
- If "max" is specified by "min" is not, then "min" == "max".
+ If "min" is specified but "max" is not, then "max" == "min"
+ If "max" is specified by "min" is not, then "min" == "max".
- It is an error if max < min.
+ It is an error if max < min.
It is an error if the value of any of these fields is negative.
- If neither "min" nor "max" is specified for a resource, use the default values below.
+ If neither "min" nor "max" is specified for a resource, use the default values below.
*/
public class ResourceRequirementImpl extends SaveableImpl implements ResourceRequirement {
@@ -60,7 +60,7 @@ public java.util.Map getExtensionFields() {
/**
* Getter for property https://w3id.org/cwl/cwl#ResourceRequirement/class
*
- * Always 'ResourceRequirement' *
+ * Always 'ResourceRequirement' *
*/
public ResourceRequirement_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ScatterFeatureRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ScatterFeatureRequirement.java
index 4387e905..350e1c52 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ScatterFeatureRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ScatterFeatureRequirement.java
@@ -31,7 +31,7 @@ public interface ScatterFeatureRequirement extends ProcessRequirement, Saveable
/**
* Getter for property https://w3id.org/cwl/cwl#ScatterFeatureRequirement/class
*
+ * Always 'SchemaDefRequirement' *
*/
public SchemaDefRequirement_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchema.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchema.java
index 805ed37d..245f5eec 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchema.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchema.java
@@ -40,7 +40,7 @@ public interface SecondaryFileSchema extends Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchemaImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchemaImpl.java
index 38f071e3..b22c20fd 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchemaImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/SecondaryFileSchemaImpl.java
@@ -51,7 +51,7 @@ public java.util.Map getExtensionFields() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ShellCommandRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ShellCommandRequirement.java
index 1ed7d619..11f719a0 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/ShellCommandRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/ShellCommandRequirement.java
@@ -36,7 +36,7 @@ public interface ShellCommandRequirement extends ProcessRequirement, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#ShellCommandRequirement/class
*
+ * Always 'ShellCommandRequirement' *
*/
public ShellCommandRequirement_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/Sink.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/Sink.java
index ea563d9d..af30b22a 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/Sink.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/Sink.java
@@ -38,7 +38,7 @@ public interface Sink extends Saveable {
* Getter for property https://w3id.org/cwl/cwl#Sink/linkMerge
*
* The method to use to merge multiple inbound links into a single array.
- * If not specified, the default method is "merge_nested".
+ * If not specified, the default method is "merge_nested".
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/SoftwareRequirement.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/SoftwareRequirement.java
index 88a6940e..b2de49f1 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/SoftwareRequirement.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/SoftwareRequirement.java
@@ -31,7 +31,7 @@ public interface SoftwareRequirement extends ProcessRequirement, Saveable {
/**
* Getter for property https://w3id.org/cwl/cwl#SoftwareRequirement/class
*
+ * Always 'WorkReuse' *
*/
public WorkReuse_class getClass_() {
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameter.java
index 2e890650..90069300 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameter.java
@@ -64,7 +64,7 @@ public interface WorkflowInputParameter extends InputParameter, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -126,7 +126,7 @@ public interface WorkflowInputParameter extends InputParameter, Saveable {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameterImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameterImpl.java
index 986b788a..d6dba623 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameterImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowInputParameterImpl.java
@@ -85,7 +85,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -167,7 +167,7 @@ public Object getFormat() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameter.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameter.java
index 12967443..d42f0571 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameter.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameter.java
@@ -69,7 +69,7 @@ public interface WorkflowOutputParameter extends OutputParameter, Saveable {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -136,7 +136,7 @@ public interface WorkflowOutputParameter extends OutputParameter, Saveable {
* Getter for property https://w3id.org/cwl/cwl#WorkflowOutputParameter/linkMerge
*
* The method to use to merge multiple sources into a single array.
- * If not specified, the default method is "merge_nested".
+ * If not specified, the default method is "merge_nested".
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameterImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameterImpl.java
index 3e196dd7..c4acce74 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameterImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowOutputParameterImpl.java
@@ -90,7 +90,7 @@ public java.util.Optional getLabel() {
* `path` or `location` and `basename` fields set, or an array consisting
* of strings or File or Directory objects. It is legal to reference an
* unchanged File or Directory object taken from input as a secondaryFile.
- * The expression may return "null" in which case there is no secondaryFile
+ * The expression may return "null" in which case there is no secondaryFile
* from that expression.
*
* To work on non-filename-preserving storage systems, portable tool
@@ -182,7 +182,7 @@ public Object getOutputSource() {
* Getter for property https://w3id.org/cwl/cwl#WorkflowOutputParameter/linkMerge
*
* The method to use to merge multiple sources into a single array.
- * If not specified, the default method is "merge_nested".
+ * If not specified, the default method is "merge_nested".
* *
*/
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStep.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStep.java
index 1ace23c2..47bde358 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStep.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStep.java
@@ -30,7 +30,7 @@ underlying process implementation (such as `CommandLineTool` or another
[ScatterFeatureRequirement](#ScatterFeatureRequirement) must be specified
in the workflow or workflow step requirements.
- A "scatter" operation specifies that the associated workflow step or
+ A "scatter" operation specifies that the associated workflow step or
subworkflow should execute separately over a list of input elements. Each
job making up a scatter operation is independent and may be executed
concurrently.
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepImpl.java
index 90b6ce04..5f30f569 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepImpl.java
@@ -33,7 +33,7 @@ underlying process implementation (such as `CommandLineTool` or another
[ScatterFeatureRequirement](#ScatterFeatureRequirement) must be specified
in the workflow or workflow step requirements.
- A "scatter" operation specifies that the associated workflow step or
+ A "scatter" operation specifies that the associated workflow step or
subworkflow should execute separately over a list of input elements. Each
job making up a scatter operation is independent and may be executed
concurrently.
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInput.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInput.java
index a28e88ae..3f2bfd3b 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInput.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInput.java
@@ -46,18 +46,18 @@ though additonal parameters may be specified (for use within `valueFrom`
scatter](#WorkflowStep) operation, there may be multiple inbound data links
listed in the `source` field. The values from the input links are merged
depending on the method specified in the `linkMerge` field. If not
- specified, the default method is "merge_nested".
+ specified, the default method is "merge_nested".
* **merge_nested**
The input must be an array consisting of exactly one entry for each
- input link. If "merge_nested" is specified with a single link, the value
+ input link. If "merge_nested" is specified with a single link, the value
from the link must be wrapped in a single-item list.
* **merge_flattened**
1. The source and sink parameters must be compatible types, or the source
- type must be compatible with single element from the "items" type of
+ type must be compatible with single element from the "items" type of
the destination array parameter.
2. Source parameters which are arrays are concatenated.
Source parameters which are single element types are appended as
@@ -89,7 +89,7 @@ public interface WorkflowStepInput extends Identified, Sink, LoadContents, Label
* Getter for property https://w3id.org/cwl/cwl#Sink/linkMerge
*
* The method to use to merge multiple inbound links into a single array.
- * If not specified, the default method is "merge_nested".
+ * If not specified, the default method is "merge_nested".
* *
*/
@@ -100,7 +100,7 @@ public interface WorkflowStepInput extends Identified, Sink, LoadContents, Label
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
@@ -154,9 +154,9 @@ public interface WorkflowStepInput extends Identified, Sink, LoadContents, Label
* The `self` value in the parameter reference or expression must be
* 1. `null` if there is no `source` field
* 2. the value of the parameter(s) specified in the `source` field when this
- * workflow input parameter **is not** specified in this workflow step's `scatter` field.
+ * workflow input parameter **is not** specified in this workflow step's `scatter` field.
* 3. an element of the parameter specified in the `source` field when this workflow input
- * parameter **is** specified in this workflow step's `scatter` field.
+ * parameter **is** specified in this workflow step's `scatter` field.
*
* The value of `inputs` in the parameter reference or expression must be
* the input object to the workflow step after assigning the `source`
diff --git a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInputImpl.java b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInputImpl.java
index b5911fb9..882958b4 100644
--- a/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInputImpl.java
+++ b/src/main/java/org/commonwl/cwlsdk/cwl1_1/WorkflowStepInputImpl.java
@@ -49,18 +49,18 @@ though additonal parameters may be specified (for use within `valueFrom`
scatter](#WorkflowStep) operation, there may be multiple inbound data links
listed in the `source` field. The values from the input links are merged
depending on the method specified in the `linkMerge` field. If not
- specified, the default method is "merge_nested".
+ specified, the default method is "merge_nested".
* **merge_nested**
The input must be an array consisting of exactly one entry for each
- input link. If "merge_nested" is specified with a single link, the value
+ input link. If "merge_nested" is specified with a single link, the value
from the link must be wrapped in a single-item list.
* **merge_flattened**
1. The source and sink parameters must be compatible types, or the source
- type must be compatible with single element from the "items" type of
+ type must be compatible with single element from the "items" type of
the destination array parameter.
2. Source parameters which are arrays are concatenated.
Source parameters which are single element types are appended as
@@ -110,7 +110,7 @@ public Object getSource() {
* Getter for property https://w3id.org/cwl/cwl#Sink/linkMerge
*
* The method to use to merge multiple inbound links into a single array.
- * If not specified, the default method is "merge_nested".
+ * If not specified, the default method is "merge_nested".
* *
*/
@@ -126,7 +126,7 @@ public java.util.Optional getLinkMerge() {
* Only valid when `type: File` or is an array of `items: File`.
*
* Read up to the first 64 KiB of text from the file and place it in the
- * "contents" field of the file object for use by expressions.
+ * "contents" field of the file object for use by expressions.
* *
*/
@@ -200,9 +200,9 @@ public java.util.Optional