From bdc6428e482b3b4affc706e64bdaacbb6dd2b8d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Fenoy?= Date: Fri, 14 Jun 2024 16:48:27 +0200 Subject: [PATCH 1/2] Fix issue #410 --- openapi/ogcapi-processes.bundled.json | 7879 +++++++++++++++++++ openapi/ogcapi-processes.yaml | 4 + openapi/paths/processes-core/pJobsList.yaml | 8 + openapi/paths/processes-dru/pPackage.yaml | 2 + openapi/update.sh | 2 +- 5 files changed, 7894 insertions(+), 1 deletion(-) diff --git a/openapi/ogcapi-processes.bundled.json b/openapi/ogcapi-processes.bundled.json index 0b5c6cf3..aa1f36be 100644 --- a/openapi/ogcapi-processes.bundled.json +++ b/openapi/ogcapi-processes.bundled.json @@ -3643,6 +3643,7861 @@ } } }, + "/processes/{processId}/package": { + "get": { + "summary": "retrieve the formal description used to deploy a process", + "description": "Access the formal description that can be used to deploy a process on an OGC API - Processes Server Instance.\n", + "operationId": "getPackage", + "tags": [ + "Package" + ], + "parameters": [ + { + "$ref": "#/components/parameters/processId-path" + } + ], + "responses": { + "200": { + "description": "The formal used to deploy a process", + "content": { + "application/ogcapppkg+json": { + "schema": { + "$ref": "#/components/schemas/ogcapppkg" + } + }, + "application/cwl": { + "schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "definitions": { + "CommandInputArraySchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandInputArraySchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "inputBinding": { + "$ref": "#/definitions/CommandLineBinding", + "description": "Describes how to turn this object into command line arguments." + }, + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Defines the type of the array elements." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "array", + "description": "Must be `array`", + "type": "string" + } + }, + "required": [ + "items", + "type" + ], + "type": "object" + }, + "CommandInputEnumSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandInputEnumSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "inputBinding": { + "$ref": "#/definitions/CommandLineBinding", + "description": "Describes how to turn this object into command line arguments." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "symbols": { + "description": "Defines the set of valid symbols.", + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "const": "enum", + "description": "Must be `enum`", + "type": "string" + } + }, + "required": [ + "symbols", + "type" + ], + "type": "object" + }, + "CommandInputParameter": { + "additionalProperties": false, + "description": "An input parameter for a CommandLineTool.", + "properties": { + "default": { + "description": "The default value to use for this parameter if the parameter is missing\nfrom the input object, or if the value of the parameter in the input\nobject is `null`. Default values are applied before evaluating expressions\n(e.g. dependent `valueFrom` fields)." + }, + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis must be one or more IRIs of concept nodes\nthat represents file formats which are allowed as input to this\nparameter, preferably defined within an ontology. If no ontology is\navailable, file formats may be tested by exact match." + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "inputBinding": { + "$ref": "#/definitions/CommandLineBinding", + "description": "Describes how to turn the input parameters of a process into\ncommand line arguments." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "CommandInputRecordField": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandInputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis must be one or more IRIs of concept nodes\nthat represents file formats which are allowed as input to this\nparameter, preferably defined within an ontology. If no ontology is\navailable, file formats may be tested by exact match." + }, + "inputBinding": { + "$ref": "#/definitions/CommandLineBinding", + "description": "Describes how to turn this object into command line arguments." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + } + ] + }, + "CommandInputRecordSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandInputRecordSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "fields": { + "description": "Defines the fields of the record.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/CommandInputRecordField" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "$ref": "#/definitions/CommandInputRecordFieldMap" + } + }, + "type": "object" + } + ] + }, + "inputBinding": { + "$ref": "#/definitions/CommandLineBinding", + "description": "Describes how to turn this object into command line arguments." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "record", + "description": "Must be `record`", + "type": "string" + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "CommandLineBinding": { + "additionalProperties": false, + "description": "When listed under `inputBinding` in the input schema, the term\n\"value\" refers to the corresponding value in the input object. For\nbinding objects listed in `CommandLineTool.arguments`, the term \"value\"\nrefers to the effective value after evaluating `valueFrom`.\n\nThe binding behavior when building the command line depends on the data\ntype of the value. If there is a mismatch between the type described by\nthe input schema and the effective value, such as resulting from an\nexpression evaluation, an implementation must use the data type of the\neffective value.\n\n - **string**: Add `prefix` and the string to the command line.\n\n - **number**: Add `prefix` and decimal representation to command line.\n\n - **boolean**: If true, add `prefix` to the command line. If false, add\n nothing.\n\n - **File**: Add `prefix` and the value of\n [`File.path`](#File) to the command line.\n\n - **Directory**: Add `prefix` and the value of\n [`Directory.path`](#Directory) to the command line.\n\n - **array**: If `itemSeparator` is specified, add `prefix` and the join\n the array into a single string with `itemSeparator` separating the\n items. Otherwise, first add `prefix`, then recursively process\n individual elements.\n If the array is empty, it does not add anything to command line.\n\n - **object**: Add `prefix` only, and recursively add object fields for\n which `inputBinding` is specified.\n\n - **null**: Add nothing.", + "properties": { + "itemSeparator": { + "description": "Join the array elements into a single string with the elements\nseparated by `itemSeparator`.", + "type": "string" + }, + "loadContents": { + "description": "Use of `loadContents` in `InputBinding` is deprecated.\nPreserved for v1.0 backwards compatibility. Will be removed in\nCWL v2.0. Use `InputParameter.loadContents` instead.", + "type": "boolean" + }, + "position": { + "description": "The sorting key. Default position is 0. If a [CWL Parameter Reference](#Parameter_references)\nor [CWL Expression](#Expressions_(Optional)) is used and if the\ninputBinding is associated with an input parameter, then the value of\n`self` will be the value of the input parameter. Input parameter\ndefaults (as specified by the `InputParameter.default` field) must be\napplied before evaluating the expression. Expressions must return a\nsingle value of type int or a null.", + "type": [ + "string", + "number" + ] + }, + "prefix": { + "description": "Command line prefix to add before the value.", + "type": "string" + }, + "separate": { + "description": "If true (default), then the prefix and value must be added as separate\ncommand line arguments; if false, prefix and value must be concatenated\ninto a single command line argument.", + "type": "boolean" + }, + "shellQuote": { + "description": "If `ShellCommandRequirement` is in the requirements for the current command,\nthis controls whether the value is quoted on the command line (default is true).\nUse `shellQuote: false` to inject metacharacters for operations such as pipes.\n\nIf `shellQuote` is true or not provided, the implementation must not\npermit interpretation of any shell metacharacters or directives.", + "type": "boolean" + }, + "valueFrom": { + "description": "If `valueFrom` is a constant string value, use this as the value and\napply the binding rules above.\n\nIf `valueFrom` is an expression, evaluate the expression to yield the\nactual value to use to build the command line and apply the binding\nrules above. If the inputBinding is associated with an input\nparameter, the value of `self` in the expression will be the value of\nthe input parameter. Input parameter defaults (as specified by the\n`InputParameter.default` field) must be applied before evaluating the\nexpression.\n\nIf the value of the associated input parameter is `null`, `valueFrom` is\nnot evaluated and nothing is added to the command line.\n\nWhen a binding is part of the `CommandLineTool.arguments` field,\nthe `valueFrom` field is required.", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "CommandLineTool": { + "description": "This defines the schema of the CWL Command Line Tool Description document.", + "properties": { + "arguments": { + "description": "Command line bindings which are not directly associated with input\nparameters. If the value is a string, it is used as a string literal\nargument. If it is an Expression, the result of the evaluation is used\nas an argument.", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandLineBinding" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + "baseCommand": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specifies the program to execute. If an array, the first element of\nthe array is the command to execute, and subsequent elements are\nmandatory command line arguments. The elements in `baseCommand` must\nappear before any command line bindings from `inputBinding` or\n`arguments`.\n\nIf `baseCommand` is not provided or is an empty array, the first\nelement of the command line produced after processing `inputBinding` or\n`arguments` must be used as the program to execute.\n\nIf the program includes a path separator character it must\nbe an absolute path, otherwise it is an error. If the program does not\ninclude a path separator, search the `$PATH` variable in the runtime\nenvironment of the workflow runner find the absolute path of the\nexecutable." + }, + "class": { + "const": "CommandLineTool", + "type": "string" + }, + "cwlVersion": { + "description": "CWL document version. Always required at the document root. Not\nrequired for a Process embedded inside another Process.", + "enum": [ + "draft-2", + "draft-3", + "draft-3.dev1", + "draft-3.dev2", + "draft-3.dev3", + "draft-3.dev4", + "draft-3.dev5", + "draft-4.dev1", + "draft-4.dev2", + "draft-4.dev3", + "v1.0", + "v1.0.dev4", + "v1.1", + "v1.1.0-dev1", + "v1.2", + "v1.2.0-dev1", + "v1.2.0-dev2", + "v1.2.0-dev3", + "v1.2.0-dev4", + "v1.2.0-dev5" + ], + "type": "string" + }, + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "hints": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + }, + "id": { + "description": "The unique identifier for this object.\n\nOnly useful for `$graph` at `Process` level. Should not be exposed\nto users in graphical or terminal user interfaces.", + "type": "string" + }, + "inputs": { + "description": "Defines the input parameters of the process. The process is ready to\nrun when all required input parameters are associated with concrete\nvalues. Input parameters include a schema for each parameter which is\nused to validate the input object. It may also be used to build a user\ninterface for constructing the input object.\n\nWhen accepting an input object, all input parameters must have a value.\nIf an input parameter is missing from the input object, it must be\nassigned a value of `null` (or the value of `default` for that\nparameter, if provided) for the purposes of validation and evaluation\nof expressions.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/CommandInputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/CommandInputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/CommandInputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "intent": { + "description": "An identifier for the type of computational operation, of this Process.\nEspecially useful for [`Operation`](Workflow.html#Operation), but can also be used for\n[`CommandLineTool`](CommandLineTool.html#CommandLineTool),\n[`Workflow`](Workflow.html#Workflow), or [ExpressionTool](Workflow.html#ExpressionTool).\n\nIf provided, then this must be an IRI of a concept node that\nrepresents the type of operation, preferably defined within an ontology.\n\nFor example, in the domain of bioinformatics, one can use an IRI from\nthe EDAM Ontology's [Operation concept nodes](http://edamontology.org/operation_0004),\nlike [Alignment](http://edamontology.org/operation_2928),\nor [Clustering](http://edamontology.org/operation_3432); or a more\nspecific Operation concept like\n[Split read mapping](http://edamontology.org/operation_3199).", + "items": { + "type": "string" + }, + "type": "array" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "outputs": { + "description": "Defines the parameters representing the output of the process. May be\nused to generate and/or validate the output object.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/CommandOutputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/CommandOutputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/CommandOutputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "permanentFailCodes": { + "description": "Exit codes that indicate the process failed due to a permanent logic error, where executing the process with the same runtime environment and same inputs is expected to always fail.\nIf not specified, all exit codes except 0 are considered permanent failure.", + "items": { + "type": "number" + }, + "type": "array" + }, + "requirements": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + }, + "stderr": { + "description": "Capture the command's standard error stream to a file written to\nthe designated output directory.\n\nIf `stderr` is a string, it specifies the file name to use.\n\nIf `stderr` is an expression, the expression is evaluated and must\nreturn a string with the file name to use to capture stderr. If the\nreturn value is not a string, or the resulting path contains illegal\ncharacters (such as the path separator `/`) it is an error.", + "type": "string" + }, + "stdin": { + "description": "A path to a file whose contents must be piped into the command's\nstandard input stream.", + "type": "string" + }, + "stdout": { + "description": "Capture the command's standard output stream to a file written to\nthe designated output directory.\n\nIf the `CommandLineTool` contains logically chained commands\n(e.g. `echo a && echo b`) `stdout` must include the output of\nevery command.\n\nIf `stdout` is a string, it specifies the file name to use.\n\nIf `stdout` is an expression, the expression is evaluated and must\nreturn a string with the file name to use to capture stdout. If the\nreturn value is not a string, or the resulting path contains illegal\ncharacters (such as the path separator `/`) it is an error.", + "type": "string" + }, + "successCodes": { + "description": "Exit codes that indicate the process completed successfully.\n\nIf not specified, only exit code 0 is considered success.", + "items": { + "type": "number" + }, + "type": "array" + }, + "temporaryFailCodes": { + "description": "Exit codes that indicate the process failed due to a possibly\ntemporary condition, where executing the process with the same\nruntime environment and inputs may produce different results.\n\nIf not specified, no exit codes are considered temporary failure.", + "items": { + "type": "number" + }, + "type": "array" + } + }, + "required": [ + "class", + "inputs", + "outputs" + ], + "type": "object" + }, + "CommandOutputArraySchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandOutputArraySchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Defines the type of the array elements." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "array", + "description": "Must be `array`", + "type": "string" + } + }, + "required": [ + "items", + "type" + ], + "type": "object" + }, + "CommandOutputBinding": { + "additionalProperties": false, + "description": "Describes how to generate an output parameter based on the files produced\nby a CommandLineTool.\n\nThe output parameter value is generated by applying these operations in the\nfollowing order:\n\n - glob\n - loadContents\n - outputEval\n - secondaryFiles", + "properties": { + "glob": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Find files or directories relative to the output directory, using POSIX\nglob(3) pathname matching. If an array is provided, find files or\ndirectories that match any pattern in the array. If an expression is\nprovided, the expression must return a string or an array of strings,\nwhich will then be evaluated as one or more glob patterns. Must only\nmatch and return files/directories which actually exist.\n\nIf the value of glob is a relative path pattern (does not\nbegin with a slash '/') then it is resolved relative to the\noutput directory. If the value of the glob is an absolute\npath pattern (it does begin with a slash '/') then it must\nrefer to a path within the output directory. It is an error\nif any glob resolves to a path outside the output directory.\nSpecifically this means globs that resolve to paths outside the output\ndirectory are illegal.\n\nA glob may match a path within the output directory which is\nactually a symlink to another file. In this case, the\nexpected behavior is for the resulting File/Directory object to take the\n`basename` (and corresponding `nameroot` and `nameext`) of the\nsymlink. The `location` of the File/Directory is implementation\ndependent, but logically the File/Directory should have the same content\nas the symlink target. Platforms may stage output files/directories to\ncloud storage that lack the concept of a symlink. In\nthis case file content and directories may be duplicated, or (to avoid\nduplication) the File/Directory `location` may refer to the symlink\ntarget.\n\nIt is an error if a symlink in the output directory (or any\nsymlink in a chain of links) refers to any file or directory\nthat is not under an input or output directory.\n\nImplementations may shut down a container before globbing\noutput, so globs and expressions must not assume access to the\ncontainer filesystem except for declared input and output." + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "outputEval": { + "description": "Evaluate an expression to generate the output value. If\n`glob` was specified, the value of `self` must be an array\ncontaining file objects that were matched. If no files were\nmatched, `self` must be a zero length array; if a single file\nwas matched, the value of `self` is an array of a single\nelement. The exit code of the process is\navailable in the expression as `runtime.exitCode`.\n\nAdditionally, if `loadContents` is true, the file must be a\nUTF-8 text file 64 KiB or smaller, and the implementation must\nread the entire contents of the file (or file array) and place\nit in the `contents` field of the File object for use in\n`outputEval`. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.\n\nIf a tool needs to return a large amount of structured data to\nthe workflow, loading the output object from `cwl.output.json`\nbypasses `outputEval` and is not subject to the 64 KiB\n`loadContents` limit.", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "CommandOutputEnumSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandOutputEnumSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "symbols": { + "description": "Defines the set of valid symbols.", + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "const": "enum", + "description": "Must be `enum`", + "type": "string" + } + }, + "required": [ + "symbols", + "type" + ], + "type": "object" + }, + "CommandOutputParameter": { + "additionalProperties": false, + "description": "An output parameter for a CommandLineTool.", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "outputBinding": { + "$ref": "#/definitions/CommandOutputBinding", + "description": "Describes how to generate this output object based on the files produced by a CommandLineTool" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "CommandOutputRecordField": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandOutputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "outputBinding": { + "$ref": "#/definitions/CommandOutputBinding", + "description": "Describes how to generate this output object based on the files\nproduced by a CommandLineTool" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + } + ] + }, + "CommandOutputRecordSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandOutputRecordSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "fields": { + "description": "Defines the fields of the record.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/CommandOutputRecordField" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "$ref": "#/definitions/CommandOutputRecordFieldMap" + } + }, + "type": "object" + } + ] + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "record", + "description": "Must be `record`", + "type": "string" + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "DefaultFetcher": { + "additionalProperties": false, + "type": "object" + }, + "Dictionary": { + "additionalProperties": { + "$ref": "#/definitions/T" + }, + "type": "object" + }, + "Dictionary": { + "additionalProperties": { + "$ref": "#/definitions/T" + }, + "type": "object" + }, + "Directory": { + "additionalProperties": false, + "description": "Represents a directory to present to a command line tool.\n\nDirectories are represented as objects with `class` of `Directory`. Directory objects have\na number of properties that provide metadata about the directory.\n\nThe `location` property of a Directory is a IRI that uniquely identifies\nthe directory. Implementations must support the file:// IRI scheme and may\nsupport other schemes such as http://. Alternately to `location`,\nimplementations must also accept the `path` property on Directory, which\nmust be a filesystem path available on the same host as the CWL runner (for\ninputs) or the runtime environment of a command line tool execution (for\ncommand line tool outputs).\n\nA Directory object may have a `listing` field. This is a list of File and\nDirectory objects that are contained in the Directory. For each entry in\n`listing`, the `basename` property defines the name of the File or\nSubdirectory when staged to disk. If `listing` is not provided, the\nimplementation must have some way of fetching the Directory listing at\nruntime based on the `location` field.\n\nIf a Directory does not have `location`, it is a Directory literal. A\nDirectory literal must provide `listing`. Directory literals must be\ncreated on disk at runtime as needed.\n\nThe resources in a Directory literal do not need to have any implied\nrelationship in their `location`. For example, a Directory listing may\ncontain two files located on different hosts. It is the responsibility of\nthe runtime to ensure that those files are staged to disk appropriately.\nSecondary files associated with files in `listing` must also be staged to\nthe same Directory.\n\nWhen executing a CommandLineTool, Directories must be recursively staged\nfirst and have local values of `path` assigned.\n\nDirectory objects in CommandLineTool output must provide either a\n`location` IRI or a `path` property in the context of the tool execution\nruntime (local to the compute node, or within the executing container).\n\nAn ExpressionTool may forward file references from input to output by using\nthe same value for `location`.\n\nName conflicts (the same `basename` appearing multiple times in `listing`\nor in any entry in `secondaryFiles` in the listing) is a fatal error.", + "properties": { + "basename": { + "description": "The base name of the directory, that is, the name of the file without any\nleading directory path. The base name must not contain a slash `/`.\n\nIf not provided, the implementation must set this field based on the\n`location` field by taking the final path component after parsing\n`location` as an IRI. If `basename` is provided, it is not required to\nmatch the value from `location`.\n\nWhen this file is made available to a CommandLineTool, it must be named\nwith `basename`, i.e. the final component of the `path` field must match\n`basename`.", + "type": "string" + }, + "class": { + "const": "Directory", + "description": "Must be `Directory` to indicate this object describes a Directory.", + "type": "string" + }, + "listing": { + "description": "List of files or subdirectories contained in this directory. The name\nof each file or subdirectory is determined by the `basename` field of\neach `File` or `Directory` object. It is an error if a `File` shares a\n`basename` with any other entry in `listing`. If two or more\n`Directory` object share the same `basename`, this must be treated as\nequivalent to a single subdirectory with the listings recursively\nmerged.", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/Directory" + }, + { + "$ref": "#/definitions/File" + } + ] + }, + "type": "array" + }, + "location": { + "description": "An IRI that identifies the directory resource. This may be a relative\nreference, in which case it must be resolved using the base IRI of the\ndocument. The location may refer to a local or remote resource. If\nthe `listing` field is not set, the implementation must use the\nlocation IRI to retrieve directory listing. If an implementation is\nunable to retrieve the directory listing stored at a remote resource (due to\nunsupported protocol, access denied, or other issue) it must signal an\nerror.\n\nIf the `location` field is not provided, the `listing` field must be\nprovided. The implementation must assign a unique identifier for\nthe `location` field.\n\nIf the `path` field is provided but the `location` field is not, an\nimplementation may assign the value of the `path` field to `location`,\nthen follow the rules above.", + "type": "string" + }, + "path": { + "description": "The local path where the Directory is made available prior to executing a\nCommandLineTool. This must be set by the implementation. This field\nmust not be used in any other context. The command line tool being\nexecuted must be able to access the directory at `path` using the POSIX\n`opendir(2)` syscall.\n\nIf the `path` contains [POSIX shell metacharacters](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02)\n(`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\\`, `\"`, `'`,\n``, ``, and ``) or characters\n[not allowed](http://www.iana.org/assignments/idna-tables-6.3.0/idna-tables-6.3.0.xhtml)\nfor [Internationalized Domain Names for Applications](https://tools.ietf.org/html/rfc6452)\nthen implementations may terminate the process with a\n`permanentFailure`.", + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "Dirent": { + "additionalProperties": false, + "description": "Define a file or subdirectory that must be staged to a particular\nplace prior to executing the command line tool. May be the result\nof executing an expression, such as building a configuration file\nfrom a template.\n\nUsually files are staged within the [designated output directory](#Runtime_environment).\nHowever, under certain circumstances, files may be staged at\narbitrary locations, see discussion for `entryname`.", + "properties": { + "entry": { + "description": "If the value is a string literal or an expression which evaluates to a\nstring, a new text file must be created with the string as the file contents.\n\nIf the value is an expression that evaluates to a `File` or\n`Directory` object, or an array of `File` or `Directory`\nobjects, this indicates the referenced file or directory\nshould be added to the designated output directory prior to\nexecuting the tool.\n\nIf the value is an expression that evaluates to `null`,\nnothing is added to the designated output directory, the entry\nhas no effect.\n\nIf the value is an expression that evaluates to some other\narray, number, or object not consisting of `File` or\n`Directory` objects, a new file must be created with the value\nserialized to JSON text as the file contents. The JSON\nserialization behavior should match the behavior of string\ninterpolation of [Parameter\nreferences](#Parameter_references).", + "type": "string" + }, + "entryname": { + "description": "The \"target\" name of the file or subdirectory. If `entry` is\na File or Directory, the `entryname` field overrides the value\nof `basename` of the File or Directory object.\n\n* Required when `entry` evaluates to file contents only\n* Optional when `entry` evaluates to a File or Directory object with a `basename`\n* Invalid when `entry` evaluates to an array of File or Directory objects.\n\nIf `entryname` is a relative path, it specifies a name within\nthe designated output directory. A relative path starting\nwith `../` or that resolves to location above the designated output directory is an error.\n\nIf `entryname` is an absolute path (starts with a slash `/`)\nit is an error unless the following conditions are met:\n\n * `DockerRequirement` is present in `requirements`\n * The program is will run inside a software container\n where, from the perspective of the program, the root\n filesystem is not shared with any other user or\n running program.\n\nIn this case, and the above conditions are met, then\n`entryname` may specify the absolute path within the container\nwhere the file or directory must be placed.", + "type": "string" + }, + "writable": { + "description": "If true, the File or Directory (or array of Files or\nDirectories) declared in `entry` must be writable by the tool.\n\nChanges to the file or directory must be isolated and not\nvisible by any other CommandLineTool process. This may be\nimplemented by making a copy of the original file or\ndirectory.\n\nDisruptive changes to the referenced file or directory must not\nbe allowed unless `InplaceUpdateRequirement.inplaceUpdate` is true.\n\nDefault false (files and directories read-only by default).\n\nA directory marked as `writable: true` implies that all files and\nsubdirectories are recursively writable as well.\n\nIf `writable` is false, the file may be made available using a\nbind mount or file system link to avoid unnecessary copying of\nthe input file. Command line tools may receive an error on\nattempting to rename or delete files or directories that are\nnot explicitly marked as writable.", + "type": "boolean" + } + }, + "required": [ + "entry" + ], + "type": "object" + }, + "DockerRequirement": { + "additionalProperties": false, + "description": "Indicates that a workflow component should be run in a\n[Docker](https://docker.com) or Docker-compatible (such as\n[Singularity](https://www.sylabs.io/) and [udocker](https://github.com/indigo-dc/udocker)) container environment and\nspecifies how to fetch or build the image.\n\nIf a CommandLineTool lists `DockerRequirement` under\n`hints` (or `requirements`), it may (or must) be run in the specified Docker\ncontainer.\n\nThe platform must first acquire or install the correct Docker image as\nspecified by `dockerPull`, `dockerImport`, `dockerLoad` or `dockerFile`.\n\nThe platform must execute the tool in the container using `docker run` with\nthe appropriate Docker image and tool command line.\n\nThe workflow platform may provide input files and the designated output\ndirectory through the use of volume bind mounts. The platform should rewrite\nfile paths in the input object to correspond to the Docker bind mounted\nlocations. That is, the platform should rewrite values in the parameter context\nsuch as `runtime.outdir`, `runtime.tmpdir` and others to be valid paths\nwithin the container. The platform must ensure that `runtime.outdir` and\n`runtime.tmpdir` are distinct directories.\n\nWhen running a tool contained in Docker, the workflow platform must not\nassume anything about the contents of the Docker container, such as the\npresence or absence of specific software, except to assume that the\ngenerated command line represents a valid command within the runtime\nenvironment of the container.\n\nA container image may specify an\n[ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint)\nand/or\n[CMD](https://docs.docker.com/engine/reference/builder/#cmd).\nCommand line arguments will be appended after all elements of\nENTRYPOINT, and will override all elements specified using CMD (in\nother words, CMD is only used when the CommandLineTool definition\nproduces an empty command line).\n\nUse of implicit ENTRYPOINT or CMD are discouraged due to reproducibility\nconcerns of the implicit hidden execution point (For further discussion, see\n[https://doi.org/10.12688/f1000research.15140.1](https://doi.org/10.12688/f1000research.15140.1)). Portable\nCommandLineTool wrappers in which use of a container is optional must not rely on ENTRYPOINT or CMD.\nCommandLineTools which do rely on ENTRYPOINT or CMD must list `DockerRequirement` in the\n`requirements` section.\n\n## Interaction with other requirements\n\nIf [EnvVarRequirement](#EnvVarRequirement) is specified alongside a\nDockerRequirement, the environment variables must be provided to Docker\nusing `--env` or `--env-file` and interact with the container's preexisting\nenvironment as defined by Docker.", + "properties": { + "class": { + "const": "DockerRequirement", + "description": "Always 'DockerRequirement'", + "type": "string" + }, + "dockerFile": { + "description": "Supply the contents of a Dockerfile which will be built using `docker build`.", + "type": "string" + }, + "dockerImageId": { + "description": "The image id that will be used for `docker run`. May be a\nhuman-readable image name or the image identifier hash. May be skipped\nif `dockerPull` is specified, in which case the `dockerPull` image id\nmust be used.", + "type": "string" + }, + "dockerImport": { + "description": "Provide HTTP URL to download and gunzip a Docker images using `docker import.", + "type": "string" + }, + "dockerLoad": { + "description": "Specify an HTTP URL from which to download a Docker image using `docker load`.", + "type": "string" + }, + "dockerOutputDirectory": { + "description": "Set the designated output directory to a specific location inside the\nDocker container.", + "type": "string" + }, + "dockerPull": { + "description": "Specify a Docker image to retrieve using `docker pull`. Can contain the\nimmutable digest to ensure an exact container is used:\n`dockerPull: ubuntu@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2`", + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "EnvVarRequirement": { + "additionalProperties": false, + "description": "Define a list of environment variables which will be set in the\nexecution environment of the tool. See `EnvironmentDef` for details.", + "properties": { + "class": { + "const": "EnvVarRequirement", + "description": "Always 'EnvVarRequirement'", + "type": "string" + }, + "envDef": { + "description": "The list of environment variables.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/EnvironmentDef" + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "type": "string" + } + } + } + ] + } + }, + "required": [ + "class", + "envDef" + ], + "type": "object" + }, + "EnvironmentDef": { + "additionalProperties": false, + "description": "Define an environment variable that will be set in the runtime environment\nby the workflow platform when executing the command line tool. May be the\nresult of executing an expression, such as getting a parameter from input.", + "properties": { + "envName": { + "description": "The environment variable name", + "type": "string" + }, + "envValue": { + "description": "The environment variable value", + "type": "string" + } + }, + "required": [ + "envName", + "envValue" + ], + "type": "object" + }, + "ExpressionTool": { + "description": "An ExpressionTool is a type of Process object that can be run by itself\nor as a Workflow step. It executes a pure Javascript expression that has\naccess to the same input parameters as a workflow. It is meant to be used\nsparingly as a way to isolate complex Javascript expressions that need to\noperate on input data and produce some result; perhaps just a\nrearrangement of the inputs. No Docker software container is required\nor allowed.", + "properties": { + "class": { + "const": "ExpressionTool", + "type": "string" + }, + "cwlVersion": { + "description": "CWL document version. Always required at the document root. Not\nrequired for a Process embedded inside another Process.", + "enum": [ + "draft-2", + "draft-3", + "draft-3.dev1", + "draft-3.dev2", + "draft-3.dev3", + "draft-3.dev4", + "draft-3.dev5", + "draft-4.dev1", + "draft-4.dev2", + "draft-4.dev3", + "v1.0", + "v1.0.dev4", + "v1.1", + "v1.1.0-dev1", + "v1.2", + "v1.2.0-dev1", + "v1.2.0-dev2", + "v1.2.0-dev3", + "v1.2.0-dev4", + "v1.2.0-dev5" + ], + "type": "string" + }, + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "expression": { + "description": "The expression to execute. The expression must return a plain\nJavascript object which matches the output parameters of the\nExpressionTool.", + "type": "string" + }, + "hints": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + }, + "id": { + "description": "The unique identifier for this object.\n\nOnly useful for `$graph` at `Process` level. Should not be exposed\nto users in graphical or terminal user interfaces.", + "type": "string" + }, + "inputs": { + "description": "Defines the input parameters of the process. The process is ready to\nrun when all required input parameters are associated with concrete\nvalues. Input parameters include a schema for each parameter which is\nused to validate the input object. It may also be used to build a user\ninterface for constructing the input object.\n\nWhen accepting an input object, all input parameters must have a value.\nIf an input parameter is missing from the input object, it must be\nassigned a value of `null` (or the value of `default` for that\nparameter, if provided) for the purposes of validation and evaluation\nof expressions.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/WorkflowInputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/WorkflowInputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/WorkflowInputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "intent": { + "description": "An identifier for the type of computational operation, of this Process.\nEspecially useful for [`Operation`](Workflow.html#Operation), but can also be used for\n[`CommandLineTool`](CommandLineTool.html#CommandLineTool),\n[`Workflow`](Workflow.html#Workflow), or [ExpressionTool](Workflow.html#ExpressionTool).\n\nIf provided, then this must be an IRI of a concept node that\nrepresents the type of operation, preferably defined within an ontology.\n\nFor example, in the domain of bioinformatics, one can use an IRI from\nthe EDAM Ontology's [Operation concept nodes](http://edamontology.org/operation_0004),\nlike [Alignment](http://edamontology.org/operation_2928),\nor [Clustering](http://edamontology.org/operation_3432); or a more\nspecific Operation concept like\n[Split read mapping](http://edamontology.org/operation_3199).", + "items": { + "type": "string" + }, + "type": "array" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "outputs": { + "description": "Defines the parameters representing the output of the process. May be\nused to generate and/or validate the output object.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/ExpressionToolOutputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/ExpressionToolOutputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter.\nNote that this field just acts as a hint, as the outputs of an\nExpressionTool process are always considered valid." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/ExpressionToolOutputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "requirements": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + } + }, + "required": [ + "class", + "expression", + "inputs", + "outputs" + ], + "type": "object" + }, + "ExpressionToolOutputParameter": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#ExpressionToolOutputParameter", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter.\nNote that this field just acts as a hint, as the outputs of an\nExpressionTool process are always considered valid." + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "Fetcher": { + "oneOf": [ + { + "$ref": "#/definitions/DefaultFetcher" + } + ] + }, + "File": { + "additionalProperties": false, + "description": "Represents a file (or group of files when `secondaryFiles` is provided) that\nwill be accessible by tools using standard POSIX file system call API such as\nopen(2) and read(2).\n\nFiles are represented as objects with `class` of `File`. File objects have\na number of properties that provide metadata about the file.\n\nThe `location` property of a File is a IRI that uniquely identifies the\nfile. Implementations must support the `file://` IRI scheme and may support\nother schemes such as `http://` and `https://`. The value of `location` may also be a\nrelative reference, in which case it must be resolved relative to the IRI\nof the document it appears in. Alternately to `location`, implementations\nmust also accept the `path` property on File, which must be a filesystem\npath available on the same host as the CWL runner (for inputs) or the\nruntime environment of a command line tool execution (for command line tool\noutputs).\n\nIf no `location` or `path` is specified, a file object must specify\n`contents` with the UTF-8 text content of the file. This is a \"file\nliteral\". File literals do not correspond to external resources, but are\ncreated on disk with `contents` with when needed for executing a tool.\nWhere appropriate, expressions can return file literals to define new files\non a runtime. The maximum size of `contents` is 64 kilobytes.\n\nThe `basename` property defines the filename on disk where the file is\nstaged. This may differ from the resource name. If not provided,\n`basename` must be computed from the last path part of `location` and made\navailable to expressions.\n\nThe `secondaryFiles` property is a list of File or Directory objects that\nmust be staged in the same directory as the primary file. It is an error\nfor file names to be duplicated in `secondaryFiles`.\n\nThe `size` property is the size in bytes of the File. It must be computed\nfrom the resource and made available to expressions. The `checksum` field\ncontains a cryptographic hash of the file content for use it verifying file\ncontents. Implementations may, at user option, enable or disable\ncomputation of the `checksum` field for performance or other reasons.\nHowever, the ability to compute output checksums is required to pass the\nCWL conformance test suite.\n\nWhen executing a CommandLineTool, the files and secondary files may be\nstaged to an arbitrary directory, but must use the value of `basename` for\nthe filename. The `path` property must be file path in the context of the\ntool execution runtime (local to the compute node, or within the executing\ncontainer). All computed properties should be available to expressions.\nFile literals also must be staged and `path` must be set.\n\nWhen collecting CommandLineTool outputs, `glob` matching returns file paths\n(with the `path` property) and the derived properties. This can all be\nmodified by `outputEval`. Alternately, if the file `cwl.output.json` is\npresent in the output, `outputBinding` is ignored.\n\nFile objects in the output must provide either a `location` IRI or a `path`\nproperty in the context of the tool execution runtime (local to the compute\nnode, or within the executing container).\n\nWhen evaluating an ExpressionTool, file objects must be referenced via\n`location` (the expression tool does not have access to files on disk so\n`path` is meaningless) or as file literals. It is legal to return a file\nobject with an existing `location` but a different `basename`. The\n`loadContents` field of ExpressionTool inputs behaves the same as on\nCommandLineTool inputs, however it is not meaningful on the outputs.\n\nAn ExpressionTool may forward file references from input to output by using\nthe same value for `location`.", + "properties": { + "basename": { + "description": "The base name of the file, that is, the name of the file without any\nleading directory path. The base name must not contain a slash `/`.\n\nIf not provided, the implementation must set this field based on the\n`location` field by taking the final path component after parsing\n`location` as an IRI. If `basename` is provided, it is not required to\nmatch the value from `location`.\n\nWhen this file is made available to a CommandLineTool, it must be named\nwith `basename`, i.e. the final component of the `path` field must match\n`basename`.", + "type": "string" + }, + "checksum": { + "description": "Optional hash code for validating file integrity. Currently, must be in the form\n\"sha1$ + hexadecimal string\" using the SHA-1 algorithm.", + "type": "string" + }, + "class": { + "const": "File", + "description": "Must be `File` to indicate this object describes a file.", + "type": "string" + }, + "contents": { + "description": "File contents literal.\n\nIf neither `location` nor `path` is provided, `contents` must be\nnon-null. The implementation must assign a unique identifier for the\n`location` field. When the file is staged as input to CommandLineTool,\nthe value of `contents` must be written to a file.\n\nIf `contents` is set as a result of a Javascript expression,\nan `entry` in `InitialWorkDirRequirement`, or read in from\n`cwl.output.json`, there is no specified upper limit on the\nsize of `contents`. Implementations may have practical limits\non the size of `contents` based on memory and storage\navailable to the workflow runner or other factors.\n\nIf the `loadContents` field of an `InputParameter` or\n`OutputParameter` is true, and the input or output File object\n`location` is valid, the file must be a UTF-8 text file 64 KiB\nor smaller, and the implementation must read the entire\ncontents of the file and place it in the `contents` field. If\nthe size of the file is greater than 64 KiB, the\nimplementation must raise a fatal error.", + "type": "string" + }, + "dirname": { + "description": "The name of the directory containing file, that is, the path leading up\nto the final slash in the path such that `dirname + '/' + basename ==\npath`.\n\nThe implementation must set this field based on the value of `path`\nprior to evaluating parameter references or expressions in a\nCommandLineTool document. This field must not be used in any other\ncontext.", + "type": "string" + }, + "format": { + "description": "The format of the file: this must be an IRI of a concept node that\nrepresents the file format, preferably defined within an ontology.\nIf no ontology is available, file formats may be tested by exact match.\n\nReasoning about format compatibility must be done by checking that an\ninput file format is the same, `owl:equivalentClass` or\n`rdfs:subClassOf` the format required by the input parameter.\n`owl:equivalentClass` is transitive with `rdfs:subClassOf`, e.g. if\n` owl:equivalentClass ` and ` owl:subclassOf ` then infer\n` owl:subclassOf `.\n\nFile format ontologies may be provided in the \"$schemas\" metadata at the\nroot of the document. If no ontologies are specified in `$schemas`, the\nruntime may perform exact file format matches.", + "type": "string" + }, + "location": { + "description": "An IRI that identifies the file resource. This may be a relative\nreference, in which case it must be resolved using the base IRI of the\ndocument. The location may refer to a local or remote resource; the\nimplementation must use the IRI to retrieve file content. If an\nimplementation is unable to retrieve the file content stored at a\nremote resource (due to unsupported protocol, access denied, or other\nissue) it must signal an error.\n\nIf the `location` field is not provided, the `contents` field must be\nprovided. The implementation must assign a unique identifier for\nthe `location` field.\n\nIf the `path` field is provided but the `location` field is not, an\nimplementation may assign the value of the `path` field to `location`,\nthen follow the rules above.", + "type": "string" + }, + "nameext": { + "description": "The basename extension such that `nameroot + nameext == basename`, and\n`nameext` is empty or begins with a period and contains at most one\nperiod. Leading periods on the basename are ignored; a basename of\n`.cshrc` will have an empty `nameext`.\n\nThe implementation must set this field automatically based on the value\nof `basename` prior to evaluating parameter references or expressions.", + "type": "string" + }, + "nameroot": { + "description": "The basename root such that `nameroot + nameext == basename`, and\n`nameext` is empty or begins with a period and contains at most one\nperiod. For the purposes of path splitting leading periods on the\nbasename are ignored; a basename of `.cshrc` will have a nameroot of\n`.cshrc`.\n\nThe implementation must set this field automatically based on the value\nof `basename` prior to evaluating parameter references or expressions.", + "type": "string" + }, + "path": { + "description": "The local host path where the File is available when a CommandLineTool is\nexecuted. This field must be set by the implementation. The final\npath component must match the value of `basename`. This field\nmust not be used in any other context. The command line tool being\nexecuted must be able to access the file at `path` using the POSIX\n`open(2)` syscall.\n\nAs a special case, if the `path` field is provided but the `location`\nfield is not, an implementation may assign the value of the `path`\nfield to `location`, and remove the `path` field.\n\nIf the `path` contains [POSIX shell metacharacters](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02)\n(`|`,`&`, `;`, `<`, `>`, `(`,`)`, `$`,`` ` ``, `\\`, `\"`, `'`,\n``, ``, and ``) or characters\n[not allowed](http://www.iana.org/assignments/idna-tables-6.3.0/idna-tables-6.3.0.xhtml)\nfor [Internationalized Domain Names for Applications](https://tools.ietf.org/html/rfc6452)\nthen implementations may terminate the process with a\n`permanentFailure`.", + "type": "string" + }, + "secondaryFiles": { + "description": "A list of additional files or directories that are associated with the\nprimary file and must be transferred alongside the primary file.\nExamples include indexes of the primary file, or external references\nwhich must be included when loading primary document. A file object\nlisted in `secondaryFiles` may itself include `secondaryFiles` for\nwhich the same rules apply.", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/Directory" + }, + { + "$ref": "#/definitions/File" + } + ] + }, + "type": "array" + }, + "size": { + "description": "Optional file size (in bytes)", + "type": "number" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "InitialWorkDirRequirement": { + "additionalProperties": false, + "description": "Define a list of files and subdirectories that must be staged by the workflow platform prior to executing the command line tool.\nNormally files are staged within the designated output directory. However, when running inside containers, files may be staged at arbitrary locations, see discussion for [`Dirent.entryname`](#Dirent). Together with `DockerRequirement.dockerOutputDirectory` it is possible to control the locations of both input and output files when running in containers.", + "properties": { + "class": { + "const": "InitialWorkDirRequirement", + "description": "InitialWorkDirRequirement", + "type": "string" + }, + "listing": { + "anyOf": [ + { + "items": { + "anyOf": [ + { + "anyOf": [ + { + "$ref": "#/definitions/Directory" + }, + { + "$ref": "#/definitions/File" + }, + { + "items": { + "anyOf": [ + { + "anyOf": [ + { + "$ref": "#/definitions/Directory" + }, + { + "$ref": "#/definitions/File" + } + ] + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + }, + { + "$ref": "#/definitions/Dirent" + }, + { + "type": "string" + } + ] + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The list of files or subdirectories that must be staged prior\nto executing the command line tool.\n\nReturn type of each expression must validate as `[\"null\",\nFile, Directory, Dirent, {type: array, items: [File,\nDirectory]}]`.\n\nEach `File` or `Directory` that is returned by an Expression\nmust be added to the designated output directory prior to\nexecuting the tool.\n\nEach `Dirent` record that is listed or returned by an\nexpression specifies a file to be created or staged in the\ndesignated output directory prior to executing the tool.\n\nExpressions may return null, in which case they have no effect.\n\nFiles or Directories which are listed in the input parameters\nand appear in the `InitialWorkDirRequirement` listing must\nhave their `path` set to their staged location. If the same\nFile or Directory appears more than once in the\n`InitialWorkDirRequirement` listing, the implementation must\nchoose exactly one value for `path`; how this value is chosen\nis undefined." + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "InlineJavascriptRequirement": { + "additionalProperties": false, + "description": "Indicates that the workflow platform must support inline Javascript expressions.\nIf this requirement is not present, the workflow platform must not perform expression\ninterpolation.", + "properties": { + "class": { + "const": "InlineJavascriptRequirement", + "description": "Always 'InlineJavascriptRequirement'", + "type": "string" + }, + "expressionLib": { + "description": "Additional code fragments that will also be inserted\nbefore executing the expression code. Allows for function definitions that may\nbe called from CWL expressions.", + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "InplaceUpdateRequirement": { + "additionalProperties": false, + "description": "If `inplaceUpdate` is true, then an implementation supporting this\nfeature may permit tools to directly update files with `writable:\ntrue` in InitialWorkDirRequirement. That is, as an optimization,\nfiles may be destructively modified in place as opposed to copied\nand updated.\n\nAn implementation must ensure that only one workflow step may\naccess a writable file at a time. It is an error if a file which\nis writable by one workflow step file is accessed (for reading or\nwriting) by any other workflow step running independently.\nHowever, a file which has been updated in a previous completed\nstep may be used as input to multiple steps, provided it is\nread-only in every step.\n\nWorkflow steps which modify a file must produce the modified file\nas output. Downstream steps which further process the file must\nuse the output of previous steps, and not refer to a common input\n(this is necessary for both ordering and correctness).\n\nWorkflow authors should provide this in the `hints` section. The\nintent of this feature is that workflows produce the same results\nwhether or not InplaceUpdateRequirement is supported by the\nimplementation, and this feature is primarily available as an\noptimization for particular environments.\n\nUsers and implementers should be aware that workflows that\ndestructively modify inputs may not be repeatable or reproducible.\nIn particular, enabling this feature implies that WorkReuse should\nnot be enabled.", + "properties": { + "class": { + "const": "InplaceUpdateRequirement", + "description": "Always 'InplaceUpdateRequirement'", + "type": "string" + }, + "inplaceUpdate": { + "type": "boolean" + } + }, + "required": [ + "class", + "inplaceUpdate" + ], + "type": "object" + }, + "InputArraySchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#InputArraySchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Defines the type of the array elements." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "array", + "description": "Must be `array`", + "type": "string" + } + }, + "required": [ + "items", + "type" + ], + "type": "object" + }, + "InputBinding": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#InputBinding", + "properties": { + "loadContents": { + "description": "Use of `loadContents` in `InputBinding` is deprecated.\nPreserved for v1.0 backwards compatibility. Will be removed in\nCWL v2.0. Use `InputParameter.loadContents` instead.", + "type": "boolean" + } + }, + "required": [], + "type": "object" + }, + "InputEnumSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#InputEnumSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "symbols": { + "description": "Defines the set of valid symbols.", + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "const": "enum", + "description": "Must be `enum`", + "type": "string" + } + }, + "required": [ + "symbols", + "type" + ], + "type": "object" + }, + "InputRecordField": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#InputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis must be one or more IRIs of concept nodes\nthat represents file formats which are allowed as input to this\nparameter, preferably defined within an ontology. If no ontology is\navailable, file formats may be tested by exact match." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + } + ] + }, + "InputRecordSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#InputRecordSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "fields": { + "description": "Defines the fields of the record.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/InputRecordField" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "$ref": "#/definitions/InputRecordFieldMap" + } + }, + "type": "object" + } + ] + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "record", + "description": "Must be `record`", + "type": "string" + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "LoadListingRequirement": { + "additionalProperties": false, + "description": "Specify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.", + "properties": { + "class": { + "const": "LoadListingRequirement", + "description": "Always 'LoadListingRequirement'", + "type": "string" + }, + "loadListing": { + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "LoadingOptions": { + "additionalProperties": false, + "properties": { + "container": { + "type": "string" + }, + "copyFrom": { + "$ref": "#/definitions/LoadingOptions" + }, + "fetcher": { + "$ref": "#/definitions/Fetcher" + }, + "fileUri": { + "type": "string" + }, + "idx": { + "$ref": "#/definitions/Dictionary" + }, + "namespaces": { + "$ref": "#/definitions/Dictionary" + }, + "noLinkCheck": { + "type": "boolean" + }, + "originalDoc": {}, + "rvocab": { + "$ref": "#/definitions/Dictionary" + }, + "schemas": { + "$ref": "#/definitions/Dictionary" + }, + "vocab": { + "$ref": "#/definitions/Dictionary" + } + }, + "required": [ + "fetcher", + "idx", + "originalDoc", + "rvocab", + "vocab" + ], + "type": "object" + }, + "MultipleInputFeatureRequirement": { + "additionalProperties": false, + "description": "Indicates that the workflow platform must support multiple inbound data links\nlisted in the `source` field of [WorkflowStepInput](#WorkflowStepInput).", + "properties": { + "class": { + "const": "MultipleInputFeatureRequirement", + "description": "Always 'MultipleInputFeatureRequirement'", + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "NetworkAccess": { + "additionalProperties": false, + "description": "Indicate whether a process requires outgoing IPv4/IPv6 network\naccess. Choice of IPv4 or IPv6 is implementation and site\nspecific, correct tools must support both.\n\nIf `networkAccess` is false or not specified, tools must not\nassume network access, except for localhost (the loopback device).\n\nIf `networkAccess` is true, the tool must be able to make outgoing\nconnections to network resources. Resources may be on a private\nsubnet or the public Internet. However, implementations and sites\nmay apply their own security policies to restrict what is\naccessible by the tool.\n\nEnabling network access does not imply a publicly routable IP\naddress or the ability to accept inbound connections.", + "properties": { + "class": { + "const": "NetworkAccess", + "description": "Always 'NetworkAccess'", + "type": "string" + }, + "networkAccess": { + "type": [ + "string", + "boolean" + ] + } + }, + "required": [ + "class", + "networkAccess" + ], + "type": "object" + }, + "Operation": { + "additionalProperties": false, + "description": "This record describes an abstract operation. It is a potential\nstep of a workflow that has not yet been bound to a concrete\nimplementation. It specifies an input and output signature, but\ndoes not provide enough information to be executed. An\nimplementation (or other tooling) may provide a means of binding\nan Operation to a concrete process (such as Workflow,\nCommandLineTool, or ExpressionTool) with a compatible signature.", + "properties": { + "class": { + "const": "Operation", + "type": "string" + }, + "cwlVersion": { + "description": "CWL document version. Always required at the document root. Not\nrequired for a Process embedded inside another Process.", + "enum": [ + "draft-2", + "draft-3", + "draft-3.dev1", + "draft-3.dev2", + "draft-3.dev3", + "draft-3.dev4", + "draft-3.dev5", + "draft-4.dev1", + "draft-4.dev2", + "draft-4.dev3", + "v1.0", + "v1.0.dev4", + "v1.1", + "v1.1.0-dev1", + "v1.2", + "v1.2.0-dev1", + "v1.2.0-dev2", + "v1.2.0-dev3", + "v1.2.0-dev4", + "v1.2.0-dev5" + ], + "type": "string" + }, + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "hints": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + }, + "id": { + "description": "The unique identifier for this object.\n\nOnly useful for `$graph` at `Process` level. Should not be exposed\nto users in graphical or terminal user interfaces.", + "type": "string" + }, + "inputs": { + "description": "Defines the input parameters of the process. The process is ready to\nrun when all required input parameters are associated with concrete\nvalues. Input parameters include a schema for each parameter which is\nused to validate the input object. It may also be used to build a user\ninterface for constructing the input object.\n\nWhen accepting an input object, all input parameters must have a value.\nIf an input parameter is missing from the input object, it must be\nassigned a value of `null` (or the value of `default` for that\nparameter, if provided) for the purposes of validation and evaluation\nof expressions.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/OperationInputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/OperationInputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/OperationInputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "intent": { + "description": "An identifier for the type of computational operation, of this Process.\nEspecially useful for [`Operation`](Workflow.html#Operation), but can also be used for\n[`CommandLineTool`](CommandLineTool.html#CommandLineTool),\n[`Workflow`](Workflow.html#Workflow), or [ExpressionTool](Workflow.html#ExpressionTool).\n\nIf provided, then this must be an IRI of a concept node that\nrepresents the type of operation, preferably defined within an ontology.\n\nFor example, in the domain of bioinformatics, one can use an IRI from\nthe EDAM Ontology's [Operation concept nodes](http://edamontology.org/operation_0004),\nlike [Alignment](http://edamontology.org/operation_2928),\nor [Clustering](http://edamontology.org/operation_3432); or a more\nspecific Operation concept like\n[Split read mapping](http://edamontology.org/operation_3199).", + "items": { + "type": "string" + }, + "type": "array" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "outputs": { + "description": "Defines the parameters representing the output of the process. May be\nused to generate and/or validate the output object.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/OperationOutputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/OperationOutputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/OperationOutputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "requirements": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + } + }, + "required": [ + "class", + "inputs", + "outputs" + ], + "type": "object" + }, + "OperationInputParameter": { + "additionalProperties": false, + "description": "Describe an input parameter of an operation.", + "properties": { + "default": { + "description": "The default value to use for this parameter if the parameter is missing\nfrom the input object, or if the value of the parameter in the input\nobject is `null`. Default values are applied before evaluating expressions\n(e.g. dependent `valueFrom` fields)." + }, + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis must be one or more IRIs of concept nodes\nthat represents file formats which are allowed as input to this\nparameter, preferably defined within an ontology. If no ontology is\navailable, file formats may be tested by exact match." + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "OperationOutputParameter": { + "additionalProperties": false, + "description": "Describe an output parameter of an operation.", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "OutputArraySchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#OutputArraySchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Defines the type of the array elements." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "array", + "description": "Must be `array`", + "type": "string" + } + }, + "required": [ + "items", + "type" + ], + "type": "object" + }, + "OutputEnumSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#OutputEnumSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "symbols": { + "description": "Defines the set of valid symbols.", + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "const": "enum", + "description": "Must be `enum`", + "type": "string" + } + }, + "required": [ + "symbols", + "type" + ], + "type": "object" + }, + "OutputRecordField": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#OutputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + } + ] + }, + "OutputRecordSchema": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#OutputRecordSchema", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "fields": { + "description": "Defines the fields of the record.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/OutputRecordField" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "$ref": "#/definitions/OutputRecordFieldMap" + } + }, + "type": "object" + } + ] + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The identifier for this type", + "type": "string" + }, + "type": { + "const": "record", + "description": "Must be `record`", + "type": "string" + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "ResourceRequirement": { + "additionalProperties": false, + "description": "Specify basic hardware resource requirements.\n\n\"min\" is the minimum amount of a resource that must be reserved to\nschedule a job. If \"min\" cannot be satisfied, the job should not\nbe run.\n\n\"max\" is the maximum amount of a resource that the job shall be\nallocated. If a node has sufficient resources, multiple jobs may\nbe scheduled on a single node provided each job's \"max\" resource\nrequirements are met. If a job attempts to exceed its resource\nallocation, an implementation may deny additional resources, which\nmay result in job failure.\n\nIf both \"min\" and \"max\" are specified, an implementation may\nchoose to allocate any amount between \"min\" and \"max\", with the\nactual allocation provided in the `runtime` object.\n\nIf \"min\" is specified but \"max\" is not, then \"max\" == \"min\"\nIf \"max\" is specified by \"min\" is not, then \"min\" == \"max\".\n\nIt is an error if max < min.\n\nIt is an error if the value of any of these fields is negative.\n\nIf neither \"min\" nor \"max\" is specified for a resource, use the default values below.", + "properties": { + "class": { + "const": "ResourceRequirement", + "description": "Always 'ResourceRequirement'", + "type": "string" + }, + "coresMax": { + "description": "Maximum reserved number of CPU cores.\n\nSee `coresMin` for discussion about fractional CPU requests.", + "type": [ + "string", + "number" + ] + }, + "coresMin": { + "description": "Minimum reserved number of CPU cores (default is 1).\n\nMay be a fractional value to indicate to a scheduling\nalgorithm that one core can be allocated to multiple\njobs. For example, a value of 0.25 indicates that up to 4\njobs may run in parallel on 1 core. A value of 1.25 means\nthat up to 3 jobs can run on a 4 core system (4/1.25 ≈ 3).\n\nProcesses can only share a core allocation if the sum of each\nof their `ramMax`, `tmpdirMax`, and `outdirMax` requests also\ndo not exceed the capacity of the node.\n\nProcesses sharing a core must have the same level of isolation\n(typically a container or VM) that they would normally have.\n\nThe reported number of CPU cores reserved for the process,\nwhich is available to expressions on the CommandLineTool as\n`runtime.cores`, must be a non-zero integer, and may be\ncalculated by rounding up the cores request to the next whole\nnumber.\n\nScheduling systems may allocate fractional CPU resources by\nsetting quotas or scheduling weights. Scheduling systems that\ndo not support fractional CPUs may round up the request to the\nnext whole number.", + "type": [ + "string", + "number" + ] + }, + "outdirMax": { + "description": "Maximum reserved filesystem based storage for the designated output directory, in mebibytes (2**20)\n\nSee `outdirMin` for discussion about fractional storage requests.", + "type": [ + "string", + "number" + ] + }, + "outdirMin": { + "description": "Minimum reserved filesystem based storage for the designated output directory, in mebibytes (2**20) (default is 1024)\n\nMay be a fractional value. If so, the actual storage request\nmust be rounded up to the next whole number. The reported\namount of storage reserved for the process, which is available\nto expressions on the CommandLineTool as `runtime.outdirSize`,\nmust be a non-zero integer.", + "type": [ + "string", + "number" + ] + }, + "ramMax": { + "description": "Maximum reserved RAM in mebibytes (2**20)\n\nSee `ramMin` for discussion about fractional RAM requests.", + "type": [ + "string", + "number" + ] + }, + "ramMin": { + "description": "Minimum reserved RAM in mebibytes (2**20) (default is 256)\n\nMay be a fractional value. If so, the actual RAM request must\nbe rounded up to the next whole number. The reported amount of\nRAM reserved for the process, which is available to\nexpressions on the CommandLineTool as `runtime.ram`, must be a\nnon-zero integer.", + "type": [ + "string", + "number" + ] + }, + "tmpdirMax": { + "description": "Maximum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20)\n\nSee `tmpdirMin` for discussion about fractional storage requests.", + "type": [ + "string", + "number" + ] + }, + "tmpdirMin": { + "description": "Minimum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20) (default is 1024)\n\nMay be a fractional value. If so, the actual storage request\nmust be rounded up to the next whole number. The reported\namount of storage reserved for the process, which is available\nto expressions on the CommandLineTool as `runtime.tmpdirSize`,\nmust be a non-zero integer.", + "type": [ + "string", + "number" + ] + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "ScatterFeatureRequirement": { + "additionalProperties": false, + "description": "Indicates that the workflow platform must support the `scatter` and\n`scatterMethod` fields of [WorkflowStep](#WorkflowStep).", + "properties": { + "class": { + "const": "ScatterFeatureRequirement", + "description": "Always 'ScatterFeatureRequirement'", + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "SchemaDefRequirement": { + "additionalProperties": false, + "description": "This field consists of an array of type definitions which must be used when\ninterpreting the `inputs` and `outputs` fields. When a `type` field\ncontains a IRI, the implementation must check if the type is defined in\n`schemaDefs` and use that definition. If the type is not found in\n`schemaDefs`, it is an error. The entries in `schemaDefs` must be\nprocessed in the order listed such that later schema definitions may refer\nto earlier schema definitions.\n\n- **Type definitions are allowed for `enum` and `record` types only.**\n- Type definitions may be shared by defining them in a file and then\n `$include`-ing them in the `types` field.\n- A file can contain a list of type definitions", + "properties": { + "class": { + "const": "SchemaDefRequirement", + "description": "Always 'SchemaDefRequirement'", + "type": "string" + }, + "types": { + "description": "The list of type definitions.", + "items": { + "anyOf": [ + { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + } + ] + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + } + }, + "required": [ + "class", + "types" + ], + "type": "object" + }, + "SecondaryFileSchema": { + "description": "Secondary files are specified using the following micro-DSL for secondary files:\n\n* If the value is a string, it is transformed to an object with two fields\n `pattern` and `required`\n* By default, the value of `required` is `null`\n (this indicates default behavior, which may be based on the context)\n* If the value ends with a question mark `?` the question mark is\n stripped off and the value of the field `required` is set to `False`\n* The remaining value is assigned to the field `pattern`\n\nFor implementation details and examples, please see\n[this section](SchemaSalad.html#Domain_Specific_Language_for_secondary_files)\nin the Schema Salad specification.", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "pattern": { + "description": "Provides a pattern or expression specifying files or directories that\nshould be included alongside the primary file.\n\nIf the value is an expression, the value of `self` in the\nexpression must be the primary input or output File object to\nwhich this binding applies. The `basename`, `nameroot` and\n`nameext` fields must be present in `self`. For\n`CommandLineTool` inputs the `location` field must also be\npresent. For `CommandLineTool` outputs the `path` field must\nalso be present. If secondary files were included on an input\nFile object as part of the Process invocation, they must also\nbe present in `secondaryFiles` on `self`.\n\nThe expression must return either: a filename string relative\nto the path to the primary File, a File or Directory object\n(`class: File` or `class: Directory`) with either `location`\n(for inputs) or `path` (for outputs) and `basename` fields\nset, or an array consisting of strings or File or Directory\nobjects as previously described.\n\nIt is legal to use `location` from a File or Directory object\npassed in as input, including `location` from secondary files\non `self`. If an expression returns a File object with the\nsame `location` but a different `basename` as a secondary file\nthat was passed in, the expression result takes precedence.\nSetting the basename with an expression this way affects the\n`path` where the secondary file will be staged to in the\nCommandLineTool.\n\nThe expression may return \"null\" in which case there is no\nsecondary file from that expression.\n\nTo work on non-filename-preserving storage systems, portable\ntool descriptions should treat `location` as an\n[opaque identifier](#opaque-strings) and avoid constructing new\nvalues from `location`, but should construct relative references\nusing `basename` or `nameroot` instead, or propagate `location`\nfrom defined inputs.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path.", + "type": "string" + }, + "required": { + "description": "An implementation must not fail workflow execution if `required` is\nset to `false` and the expected secondary file does not exist.\nDefault value for `required` field is `true` for secondary files on\ninput and `false` for secondary files on output.", + "type": [ + "string", + "boolean" + ] + } + }, + "required": [ + "pattern" + ], + "type": "object" + }, + { + "type": "string" + } + ] + }, + "ShellCommandRequirement": { + "additionalProperties": false, + "description": "Modify the behavior of CommandLineTool to generate a single string\ncontaining a shell command line. Each item in the `arguments` list must\nbe joined into a string separated by single spaces and quoted to prevent\ninterpretation by the shell, unless `CommandLineBinding` for that argument\ncontains `shellQuote: false`. If `shellQuote: false` is specified, the\nargument is joined into the command string without quoting, which allows\nthe use of shell metacharacters such as `|` for pipes.", + "properties": { + "class": { + "const": "ShellCommandRequirement", + "description": "Always 'ShellCommandRequirement'", + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "SoftwarePackage": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#SoftwarePackage", + "properties": { + "package": { + "description": "The name of the software to be made available. If the name is\ncommon, inconsistent, or otherwise ambiguous it should be combined with\none or more identifiers in the `specs` field.", + "type": "string" + }, + "specs": { + "description": "One or more [IRI](https://en.wikipedia.org/wiki/Internationalized_Resource_Identifier)s\nidentifying resources for installing or enabling the software named in\nthe `package` field. Implementations may provide resolvers which map\nthese software identifier IRIs to some configuration action; or they can\nuse only the name from the `package` field on a best effort basis.\n\nFor example, the IRI https://packages.debian.org/bowtie could\nbe resolved with `apt-get install bowtie`. The IRI\nhttps://anaconda.org/bioconda/bowtie could be resolved with `conda\ninstall -c bioconda bowtie`.\n\nIRIs can also be system independent and used to map to a specific\nsoftware installation or selection mechanism.\nUsing [RRID](https://www.identifiers.org/rrid/) as an example:\nhttps://identifiers.org/rrid/RRID:SCR_005476\ncould be fulfilled using the above-mentioned Debian or bioconda\npackage, a local installation managed by [Environment Modules](https://modules.sourceforge.net/),\nor any other mechanism the platform chooses. IRIs can also be from\nidentifier sources that are discipline specific yet still system\nindependent. As an example, the equivalent [ELIXIR Tools and Data\nService Registry](https://bio.tools) IRI to the previous RRID example is\nhttps://bio.tools/tool/bowtie2/version/2.2.8.\nIf supported by a given registry, implementations are encouraged to\nquery these system independent software identifier IRIs directly for\nlinks to packaging systems.\n\nA site specific IRI can be listed as well. For example, an academic\ncomputing cluster using Environment Modules could list the IRI\n`https://hpc.example.edu/modules/bowtie-tbb/1.22` to indicate that\n`module load bowtie-tbb/1.1.2` should be executed to make available\n`bowtie` version 1.1.2 compiled with the TBB library prior to running\nthe accompanying Workflow or CommandLineTool. Note that the example IRI\nis specific to a particular institution and computing environment as\nthe Environment Modules system does not have a common namespace or\nstandardized naming convention.\n\nThis last example is the least portable and should only be used if\nmechanisms based off of the `package` field or more generic IRIs are\nunavailable or unsuitable. While harmless to other sites, site specific\nsoftware IRIs should be left out of shared CWL descriptions to avoid\nclutter.", + "items": { + "type": "string" + }, + "type": "array" + }, + "version": { + "description": "The (optional) versions of the software that are known to be\ncompatible.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "package" + ], + "type": "object" + }, + "SoftwareRequirement": { + "additionalProperties": false, + "description": "A list of software packages that should be configured in the environment of\nthe defined process.", + "properties": { + "class": { + "const": "SoftwareRequirement", + "description": "Always 'SoftwareRequirement'", + "type": "string" + }, + "packages": { + "description": "The list of software to be configured.", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwarePackage" + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + } + }, + "required": [ + "class", + "packages" + ], + "type": "object" + }, + "StepInputExpressionRequirement": { + "additionalProperties": false, + "description": "Indicate that the workflow platform must support the `valueFrom` field\nof [WorkflowStepInput](#WorkflowStepInput).", + "properties": { + "class": { + "const": "StepInputExpressionRequirement", + "description": "Always 'StepInputExpressionRequirement'", + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "SubworkflowFeatureRequirement": { + "additionalProperties": false, + "description": "Indicates that the workflow platform must support nested workflows in\nthe `run` field of [WorkflowStep](#WorkflowStep).", + "properties": { + "class": { + "const": "SubworkflowFeatureRequirement", + "description": "Always 'SubworkflowFeatureRequirement'", + "type": "string" + } + }, + "required": [ + "class" + ], + "type": "object" + }, + "T": { + "additionalProperties": false, + "type": "object" + }, + "ToolTimeLimit": { + "additionalProperties": false, + "description": "Set an upper limit on the execution time of a CommandLineTool.\nA CommandLineTool whose execution duration exceeds the time\nlimit may be preemptively terminated and considered failed.\nMay also be used by batch systems to make scheduling decisions.\nThe execution duration excludes external operations, such as\nstaging of files, pulling a docker image etc, and only counts\nwall-time for the execution of the command line itself.", + "properties": { + "class": { + "const": "ToolTimeLimit", + "description": "Always 'ToolTimeLimit'", + "type": "string" + }, + "timelimit": { + "description": "The time limit, in seconds. A time limit of zero means no\ntime limit. Negative time limits are an error.", + "type": [ + "string", + "number" + ] + } + }, + "required": [ + "class", + "timelimit" + ], + "type": "object" + }, + "WorkReuse": { + "additionalProperties": false, + "description": "For implementations that support reusing output from past work (on\nthe assumption that same code and same input produce same\nresults), control whether to enable or disable the reuse behavior\nfor a particular tool or step (to accommodate situations where that\nassumption is incorrect). A reused step is not executed but\ninstead returns the same output as the original execution.\n\nIf `WorkReuse` is not specified, correct tools should assume it\nis enabled by default.", + "properties": { + "class": { + "const": "WorkReuse", + "description": "Always 'WorkReuse'", + "type": "string" + }, + "enableReuse": { + "type": [ + "string", + "boolean" + ] + } + }, + "required": [ + "class", + "enableReuse" + ], + "type": "object" + }, + "Workflow": { + "description": "A workflow describes a set of **steps** and the **dependencies** between\nthose steps. When a step produces output that will be consumed by a\nsecond step, the first step is a dependency of the second step.\n\nWhen there is a dependency, the workflow engine must execute the preceding\nstep and wait for it to successfully produce output before executing the\ndependent step. If two steps are defined in the workflow graph that\nare not directly or indirectly dependent, these steps are **independent**,\nand may execute in any order or execute concurrently. A workflow is\ncomplete when all steps have been executed.\n\nDependencies between parameters are expressed using the `source`\nfield on [workflow step input parameters](#WorkflowStepInput) and\n`outputSource` field on [workflow output\nparameters](#WorkflowOutputParameter).\n\nThe `source` field on each workflow step input parameter expresses\nthe data links that contribute to the value of the step input\nparameter (the \"sink\"). A workflow step can only begin execution\nwhen every data link connected to a step has been fulfilled.\n\nThe `outputSource` field on each workflow step input parameter\nexpresses the data links that contribute to the value of the\nworkflow output parameter (the \"sink\"). Workflow execution cannot\ncomplete successfully until every data link connected to an output\nparameter has been fulfilled.\n\n## Workflow success and failure\n\nA completed step must result in one of `success`, `temporaryFailure` or\n`permanentFailure` states. An implementation may choose to retry a step\nexecution which resulted in `temporaryFailure`. An implementation may\nchoose to either continue running other steps of a workflow, or terminate\nimmediately upon `permanentFailure`.\n\n* If any step of a workflow execution results in `permanentFailure`, then\nthe workflow status is `permanentFailure`.\n\n* If one or more steps result in `temporaryFailure` and all other steps\ncomplete `success` or are not executed, then the workflow status is\n`temporaryFailure`.\n\n* If all workflow steps are executed and complete with `success`, then the\nworkflow status is `success`.\n\n# Extensions\n\n[ScatterFeatureRequirement](#ScatterFeatureRequirement) and\n[SubworkflowFeatureRequirement](#SubworkflowFeatureRequirement) are\navailable as standard [extensions](#Extensions_and_Metadata) to core\nworkflow semantics.", + "properties": { + "class": { + "const": "Workflow", + "type": "string" + }, + "cwlVersion": { + "description": "CWL document version. Always required at the document root. Not\nrequired for a Process embedded inside another Process.", + "enum": [ + "draft-2", + "draft-3", + "draft-3.dev1", + "draft-3.dev2", + "draft-3.dev3", + "draft-3.dev4", + "draft-3.dev5", + "draft-4.dev1", + "draft-4.dev2", + "draft-4.dev3", + "v1.0", + "v1.0.dev4", + "v1.1", + "v1.1.0-dev1", + "v1.2", + "v1.2.0-dev1", + "v1.2.0-dev2", + "v1.2.0-dev3", + "v1.2.0-dev4", + "v1.2.0-dev5" + ], + "type": "string" + }, + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "hints": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + }, + "id": { + "description": "The unique identifier for this object.\n\nOnly useful for `$graph` at `Process` level. Should not be exposed\nto users in graphical or terminal user interfaces.", + "type": "string" + }, + "inputs": { + "description": "Defines the input parameters of the process. The process is ready to\nrun when all required input parameters are associated with concrete\nvalues. Input parameters include a schema for each parameter which is\nused to validate the input object. It may also be used to build a user\ninterface for constructing the input object.\n\nWhen accepting an input object, all input parameters must have a value.\nIf an input parameter is missing from the input object, it must be\nassigned a value of `null` (or the value of `default` for that\nparameter, if provided) for the purposes of validation and evaluation\nof expressions.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/WorkflowInputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/WorkflowInputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/WorkflowInputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "intent": { + "description": "An identifier for the type of computational operation, of this Process.\nEspecially useful for [`Operation`](Workflow.html#Operation), but can also be used for\n[`CommandLineTool`](CommandLineTool.html#CommandLineTool),\n[`Workflow`](Workflow.html#Workflow), or [ExpressionTool](Workflow.html#ExpressionTool).\n\nIf provided, then this must be an IRI of a concept node that\nrepresents the type of operation, preferably defined within an ontology.\n\nFor example, in the domain of bioinformatics, one can use an IRI from\nthe EDAM Ontology's [Operation concept nodes](http://edamontology.org/operation_0004),\nlike [Alignment](http://edamontology.org/operation_2928),\nor [Clustering](http://edamontology.org/operation_3432); or a more\nspecific Operation concept like\n[Split read mapping](http://edamontology.org/operation_3199).", + "items": { + "type": "string" + }, + "type": "array" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "outputs": { + "description": "Defines the parameters representing the output of the process. May be\nused to generate and/or validate the output object.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/WorkflowOutputParameter" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/WorkflowOutputParameter" + }, + { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/WorkflowOutputParameter" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "requirements": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this process. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + }, + "steps": { + "description": "The individual steps that make up the workflow. Each step is executed when all of its\ninput data links are fulfilled. An implementation may choose to execute\nthe steps in a different order than listed and/or execute steps\nconcurrently, provided that dependencies between steps are met.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/WorkflowStep" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "$ref": "#/definitions/WorkflowStep" + } + }, + "type": "object" + } + ] + } + }, + "required": [ + "class", + "inputs", + "outputs", + "steps" + ], + "type": "object" + }, + "WorkflowInputParameter": { + "additionalProperties": false, + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#WorkflowInputParameter", + "properties": { + "default": { + "description": "The default value to use for this parameter if the parameter is missing\nfrom the input object, or if the value of the parameter in the input\nobject is `null`. Default values are applied before evaluating expressions\n(e.g. dependent `valueFrom` fields)." + }, + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis must be one or more IRIs of concept nodes\nthat represents file formats which are allowed as input to this\nparameter, preferably defined within an ontology. If no ontology is\navailable, file formats may be tested by exact match." + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "inputBinding": { + "$ref": "#/definitions/InputBinding", + "description": "Deprecated. Preserved for v1.0 backwards compatibility. Will be removed in\nCWL v2.0. Use `WorkflowInputParameter.loadContents` instead." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "WorkflowOutputParameter": { + "additionalProperties": false, + "description": "Describe an output parameter of a workflow. The parameter must be\nconnected to one or more parameters defined in the workflow that\nwill provide the value of the output parameter. It is legal to\nconnect a WorkflowInputParameter to a WorkflowOutputParameter.\n\nSee [WorkflowStepInput](#WorkflowStepInput) for discussion of\n`linkMerge` and `pickValue`.", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "linkMerge": { + "description": "The method to use to merge multiple sources into a single array.\nIf not specified, the default method is \"merge_nested\".", + "enum": [ + "merge_flattened", + "merge_nested" + ], + "type": "string" + }, + "outputSource": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specifies one or more names of an output from a workflow step (in the form\n`step_name/output_name` with a `/` separator`), or a workflow input name,\nthat supply their value(s) to the output parameter.\nthe output parameter. It is valid to reference workflow level inputs\nhere." + }, + "pickValue": { + "description": "The method to use to choose non-null elements among multiple sources.", + "enum": [ + "all_non_null", + "first_non_null", + "the_only_non_null" + ], + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specify valid types of data that may be assigned to this parameter." + } + }, + "required": [ + "type" + ], + "type": "object" + }, + "WorkflowStep": { + "additionalProperties": false, + "description": "A workflow step is an executable element of a workflow. It specifies the\nunderlying process implementation (such as `CommandLineTool` or another\n`Workflow`) in the `run` field and connects the input and output parameters\nof the underlying process to workflow parameters.\n\n# Scatter/gather\n\nTo use scatter/gather,\n[ScatterFeatureRequirement](#ScatterFeatureRequirement) must be specified\nin the workflow or workflow step requirements.\n\nA \"scatter\" operation specifies that the associated workflow step or\nsubworkflow should execute separately over a list of input elements. Each\njob making up a scatter operation is independent and may be executed\nconcurrently.\n\nThe `scatter` field specifies one or more input parameters which will be\nscattered. An input parameter may be listed more than once. The declared\ntype of each input parameter implicitly becomes an array of items of the\ninput parameter type. If a parameter is listed more than once, it becomes\na nested array. As a result, upstream parameters which are connected to\nscattered parameters must be arrays.\n\nAll output parameter types are also implicitly wrapped in arrays. Each job\nin the scatter results in an entry in the output array.\n\nIf any scattered parameter runtime value is an empty array, all outputs are\nset to empty arrays and no work is done for the step, according to\napplicable scattering rules.\n\nIf `scatter` declares more than one input parameter, `scatterMethod`\ndescribes how to decompose the input into a discrete set of jobs.\n\n * **dotproduct** specifies that each of the input arrays are aligned and one\n element taken from each array to construct each job. It is an error\n if all input arrays are not the same length.\n\n * **nested_crossproduct** specifies the Cartesian product of the inputs,\n producing a job for every combination of the scattered inputs. The\n output must be nested arrays for each level of scattering, in the\n order that the input arrays are listed in the `scatter` field.\n\n * **flat_crossproduct** specifies the Cartesian product of the inputs,\n producing a job for every combination of the scattered inputs. The\n output arrays must be flattened to a single level, but otherwise listed in the\n order that the input arrays are listed in the `scatter` field.\n\n# Conditional execution (Optional)\n\nConditional execution makes execution of a step conditional on an\nexpression. A step that is not executed is \"skipped\". A skipped\nstep produces `null` for all output parameters.\n\nThe condition is evaluated after `scatter`, using the input object\nof each individual scatter job. This means over a set of scatter\njobs, some may be executed and some may be skipped. When the\nresults are gathered, skipped steps must be `null` in the output\narrays.\n\nThe `when` field controls conditional execution. This is an\nexpression that must be evaluated with `inputs` bound to the step\ninput object (or individual scatter job), and returns a boolean\nvalue. It is an error if this expression returns a value other\nthan `true` or `false`.\n\nConditionals in CWL are an optional feature and are not required\nto be implemented by all consumers of CWL documents. An\nimplementation that does not support conditionals must return a\nfatal error when attempting to execute a workflow that uses\nconditional constructs the implementation does not support.\n\n# Subworkflows\n\nTo specify a nested workflow as part of a workflow step,\n[SubworkflowFeatureRequirement](#SubworkflowFeatureRequirement) must be\nspecified in the workflow or workflow step requirements.\n\nIt is a fatal error if a workflow directly or indirectly invokes itself as\na subworkflow (recursive workflows are not allowed).", + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "hints": { + "description": "Declares hints applying to either the runtime environment or the\nworkflow engine that may be helpful in executing this workflow step. It is\nnot an error if an implementation cannot satisfy all hints, however\nthe implementation may report a warning.", + "items": {}, + "type": "array" + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "in": { + "description": "Defines the input parameters of the workflow step. The process is ready to\nrun when all required input parameters are associated with concrete\nvalues. Input parameters include a schema for each parameter which is\nused to validate the input object. It may also be used build a user\ninterface for constructing the input object.", + "oneOf": [ + { + "items": { + "$ref": "#/definitions/WorkflowStepInput" + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "oneOf": [ + { + "$ref": "#/definitions/WorkflowStepInput" + }, + { + "type": "string" + }, + { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/WorkflowStepInput" + } + ] + } + } + ] + } + }, + "type": "object" + } + ] + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "out": { + "description": "Defines the parameters representing the output of the process. May be\nused to generate and/or validate the output object.", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/WorkflowStepOutput" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + "requirements": { + "description": "Declares requirements that apply to either the runtime environment or the\nworkflow engine that must be met in order to execute this workflow step. If\nan implementation cannot satisfy all requirements, or a requirement is\nlisted which is not recognized by the implementation, it is a fatal\nerror and the implementation must not attempt to run the process,\nunless overridden at user option.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + }, + { + "$ref": "#/definitions/InlineJavascriptRequirement" + }, + { + "$ref": "#/definitions/SchemaDefRequirement" + }, + { + "$ref": "#/definitions/LoadListingRequirement" + }, + { + "$ref": "#/definitions/DockerRequirement" + }, + { + "$ref": "#/definitions/SoftwareRequirement" + }, + { + "$ref": "#/definitions/InitialWorkDirRequirement" + }, + { + "$ref": "#/definitions/EnvVarRequirement" + }, + { + "$ref": "#/definitions/ShellCommandRequirement" + }, + { + "$ref": "#/definitions/ResourceRequirement" + }, + { + "$ref": "#/definitions/WorkReuse" + }, + { + "$ref": "#/definitions/NetworkAccess" + }, + { + "$ref": "#/definitions/InplaceUpdateRequirement" + }, + { + "$ref": "#/definitions/ToolTimeLimit" + }, + { + "$ref": "#/definitions/SubworkflowFeatureRequirement" + }, + { + "$ref": "#/definitions/ScatterFeatureRequirement" + }, + { + "$ref": "#/definitions/MultipleInputFeatureRequirement" + }, + { + "$ref": "#/definitions/StepInputExpressionRequirement" + } + ] + }, + "type": "array" + }, + { + "type": "object", + "properties": { + "InlineJavascriptRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InlineJavascriptRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SchemaDefRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SchemaDefRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "LoadListingRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/LoadListingRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "DockerRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/DockerRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SoftwareRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwareRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InitialWorkDirRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InitialWorkDirRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "EnvVarRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/EnvVarRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ShellCommandRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ShellCommandRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ResourceRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ResourceRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "WorkReuse": { + "anyOf": [ + { + "$ref": "#/definitions/WorkReuseMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "NetworkAccess": { + "anyOf": [ + { + "$ref": "#/definitions/NetworkAccessMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "InplaceUpdateRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/InplaceUpdateRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ToolTimeLimit": { + "anyOf": [ + { + "$ref": "#/definitions/ToolTimeLimitMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "SubworkflowFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/SubworkflowFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "ScatterFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/ScatterFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "MultipleInputFeatureRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/MultipleInputFeatureRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + }, + "StepInputExpressionRequirement": { + "anyOf": [ + { + "$ref": "#/definitions/StepInputExpressionRequirementMap" + }, + { + "type": "object", + "properties": {}, + "additionalProperties": false + } + ] + } + }, + "additionalProperties": false + } + ] + }, + "run": { + "anyOf": [ + { + "$ref": "#/definitions/CommandLineTool" + }, + { + "$ref": "#/definitions/ExpressionTool" + }, + { + "$ref": "#/definitions/Workflow" + }, + { + "$ref": "#/definitions/Operation" + }, + { + "type": "string" + } + ], + "description": "Specifies the process to run. If `run` is a string, it must be an absolute IRI\nor a relative path from the primary document." + }, + "scatter": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ] + }, + "scatterMethod": { + "description": "Required if `scatter` is an array of more than one element.", + "enum": [ + "dotproduct", + "flat_crossproduct", + "nested_crossproduct" + ], + "type": "string" + }, + "when": { + "description": "If defined, only run the step when the expression evaluates to\n`true`. If `false` the step is skipped. A skipped step\nproduces a `null` on each output.", + "type": "string" + } + }, + "required": [ + "in", + "out", + "run" + ], + "type": "object" + }, + "WorkflowStepInput": { + "additionalProperties": false, + "description": "The input of a workflow step connects an upstream parameter (from the\nworkflow inputs, or the outputs of other workflows steps) with the input\nparameters of the process specified by the `run` field. Only input parameters\ndeclared by the target process will be passed through at runtime to the process\nthough additional parameters may be specified (for use within `valueFrom`\nexpressions for instance) - unconnected or unused parameters do not represent an\nerror condition.\n\n# Input object\n\nA WorkflowStepInput object must contain an `id` field in the form\n`#fieldname` or `#prefix/fieldname`. When the `id` field contains a slash\n`/` the field name consists of the characters following the final slash\n(the prefix portion may contain one or more slashes to indicate scope).\nThis defines a field of the workflow step input object with the value of\nthe `source` parameter(s).\n\n# Merging multiple inbound data links\n\nTo merge multiple inbound data links,\n[MultipleInputFeatureRequirement](#MultipleInputFeatureRequirement) must be specified\nin the workflow or workflow step requirements.\n\nIf the sink parameter is an array, or named in a [workflow\nscatter](#WorkflowStep) operation, there may be multiple inbound\ndata links listed in the `source` field. The values from the\ninput links are merged depending on the method specified in the\n`linkMerge` field. If both `linkMerge` and `pickValue` are null\nor not specified, and there is more than one element in the\n`source` array, the default method is \"merge_nested\".\n\nIf both `linkMerge` and `pickValue` are null or not specified, and\nthere is only a single element in the `source`, then the input\nparameter takes the scalar value from the single input link (it is\n*not* wrapped in a single-list).\n\n* **merge_nested**\n\n The input must be an array consisting of exactly one entry for each\n input link. If \"merge_nested\" is specified with a single link, the value\n from the link must be wrapped in a single-item list.\n\n* **merge_flattened**\n\n 1. The source and sink parameters must be compatible types, or the source\n type must be compatible with single element from the \"items\" type of\n the destination array parameter.\n 2. Source parameters which are arrays are concatenated.\n Source parameters which are single element types are appended as\n single elements.\n\n# Picking non-null values among inbound data links\n\nIf present, `pickValue` specifies how to pick non-null values among inbound data links.\n\n`pickValue` is evaluated\n 1. Once all source values from upstream step or parameters are available.\n 2. After `linkMerge`.\n 3. Before `scatter` or `valueFrom`.\n\nThis is specifically intended to be useful in combination with\n[conditional execution](#WorkflowStep), where several upstream\nsteps may be connected to a single input (`source` is a list), and\nskipped steps produce null values.\n\nStatic type checkers should check for type consistency after inferring what the type\nwill be after `pickValue` is applied, just as they do currently for `linkMerge`.\n\n* **first_non_null**\n\n For the first level of a list input, pick the first non-null element. The result is a scalar.\n It is an error if there is no non-null element. Examples:\n * `[null, x, null, y] -> x`\n * `[null, [null], null, y] -> [null]`\n * `[null, null, null] -> Runtime Error`\n\n *Intended use case*: If-else pattern where the\n value comes either from a conditional step or from a default or\n fallback value. The conditional step(s) should be placed first in\n the list.\n\n* **the_only_non_null**\n\n For the first level of a list input, pick the single non-null element. The result is a scalar.\n It is an error if there is more than one non-null element. Examples:\n\n * `[null, x, null] -> x`\n * `[null, x, null, y] -> Runtime Error`\n * `[null, [null], null] -> [null]`\n * `[null, null, null] -> Runtime Error`\n\n *Intended use case*: Switch type patterns where developer considers\n more than one active code path as a workflow error\n (possibly indicating an error in writing `when` condition expressions).\n\n* **all_non_null**\n\n For the first level of a list input, pick all non-null values.\n The result is a list, which may be empty. Examples:\n\n * `[null, x, null] -> [x]`\n * `[x, null, y] -> [x, y]`\n * `[null, [x], [null]] -> [[x], [null]]`\n * `[null, null, null] -> []`\n\n *Intended use case*: It is valid to have more than one source, but\n sources are conditional, so null sources (from skipped steps)\n should be filtered out.", + "properties": { + "default": { + "description": "The default value for this parameter to use if either there is no\n`source` field, or the value produced by the `source` is `null`. The\ndefault must be applied prior to scattering or evaluating `valueFrom`." + }, + "id": { + "description": "The unique identifier for this object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "linkMerge": { + "description": "The method to use to merge multiple inbound links into a single array.\nIf not specified, the default method is \"merge_nested\".", + "enum": [ + "merge_flattened", + "merge_nested" + ], + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "pickValue": { + "description": "The method to use to choose non-null elements among multiple sources.", + "enum": [ + "all_non_null", + "first_non_null", + "the_only_non_null" + ], + "type": "string" + }, + "source": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Specifies one or more workflow parameters that will provide input to\nthe underlying step parameter." + }, + "valueFrom": { + "description": "To use valueFrom, [StepInputExpressionRequirement](#StepInputExpressionRequirement) must\nbe specified in the workflow or workflow step requirements.\n\nIf `valueFrom` is a constant string value, use this as the value for\nthis input parameter.\n\nIf `valueFrom` is a parameter reference or expression, it must be\nevaluated to yield the actual value to be assigned to the input field.\n\nThe `self` value in the parameter reference or expression must be\n1. `null` if there is no `source` field\n2. the value of the parameter(s) specified in the `source` field when this\nworkflow input parameter **is not** specified in this workflow step's `scatter` field.\n3. an element of the parameter specified in the `source` field when this workflow input\nparameter **is** specified in this workflow step's `scatter` field.\n\nThe value of `inputs` in the parameter reference or expression must be\nthe input object to the workflow step after assigning the `source`\nvalues, applying `default`, and then scattering. The order of\nevaluating `valueFrom` among step input parameters is undefined and the\nresult of evaluating `valueFrom` on a parameter must not be visible to\nevaluation of `valueFrom` on other parameters.", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "WorkflowStepOutput": { + "additionalProperties": false, + "description": "Associate an output parameter of the underlying process with a workflow\nparameter. The workflow parameter (given in the `id` field) be may be used\nas a `source` to connect with input parameters of other workflow steps, or\nwith an output parameter of the process.\n\nA unique identifier for this workflow output parameter. This is\nthe identifier to use in the `source` field of `WorkflowStepInput`\nto connect the output value to downstream parameters.", + "properties": { + "id": { + "description": "The unique identifier for this object.", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "CWLImportManual": { + "description": "Represents an '$import' directive that should point toward another compatible CWL file to import where specified. The contents of the imported file should be relevant contextually where it is being imported", + "$comment": "The schema validation of the CWL will not itself perform the '$import' to resolve and validate its contents. Therefore, the complete schema will not be validated entirely, and could still be partially malformed. To ensure proper and exhaustive validation of a CWL definition with this schema, all '$import' directives should be resolved and extended beforehand", + "type": "object", + "properties": { + "$import": { + "type": "string" + } + }, + "required": [ + "$import" + ], + "additionalProperties": false + }, + "CWLIncludeManual": { + "description": "Represents an '$include' directive that should point toward another compatible CWL file to import where specified. The contents of the imported file should be relevant contextually where it is being imported", + "$comment": "The schema validation of the CWL will not itself perform the '$include' to resolve and validate its contents. Therefore, the complete schema will not be validated entirely, and could still be partially malformed. To ensure proper and exhaustive validation of a CWL definition with this schema, all '$include' directives should be resolved and extended beforehand", + "type": "object", + "properties": { + "$include": { + "type": "string" + } + }, + "required": [ + "$include" + ], + "additionalProperties": false + }, + "CWLDocumentMetadata": { + "description": "Metadata for a CWL document", + "type": "object", + "properties": { + "$namespaces": { + "description": "The namespaces used in the document", + "type": "object", + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "type": "string" + } + } + }, + "$schemas": { + "description": "The schemas used in the document", + "type": "array", + "items": { + "type": "string" + } + } + }, + "patternProperties": { + "^\\w+:.*$": { + "type": "object" + }, + "^\\w+:\\/\\/.*": { + "type": "object" + } + }, + "required": [] + }, + "CommandInputRecordFieldMap": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandInputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis must be one or more IRIs of concept nodes\nthat represents file formats which are allowed as input to this\nparameter, preferably defined within an ontology. If no ontology is\navailable, file formats may be tested by exact match." + }, + "inputBinding": { + "$ref": "#/definitions/CommandLineBinding", + "description": "Describes how to turn this object into command line arguments." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "type": "object", + "required": [ + "type" + ] + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + { + "type": "string" + } + ] + }, + "InputRecordFieldMap": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#InputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis must be one or more IRIs of concept nodes\nthat represents file formats which are allowed as input to this\nparameter, preferably defined within an ontology. If no ontology is\navailable, file formats may be tested by exact match." + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "loadContents": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nIf true, the file (or each file in the array) must be a UTF-8\ntext file 64 KiB or smaller, and the implementation must read\nthe entire contents of the file (or file array) and place it\nin the `contents` field of the File object for use by\nexpressions. If the size of the file is greater than 64 KiB,\nthe implementation must raise a fatal error.", + "type": "boolean" + }, + "loadListing": { + "description": "Only valid when `type: Directory` or is an array of `items: Directory`.\n\nSpecify the desired behavior for loading the `listing` field of\na Directory object for use by expressions.\n\nThe order of precedence for loadListing is:\n\n 1. `loadListing` on an individual parameter\n 2. Inherited from `LoadListingRequirement`\n 3. By default: `no_listing`", + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "type": "object", + "required": [ + "type" + ] + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/InputRecordSchema" + }, + { + "$ref": "#/definitions/InputEnumSchema" + }, + { + "$ref": "#/definitions/InputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + { + "type": "string" + } + ] + }, + "CommandOutputRecordFieldMap": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#CommandOutputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "outputBinding": { + "$ref": "#/definitions/CommandOutputBinding", + "description": "Describes how to generate this output object based on the files\nproduced by a CommandLineTool" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "type": "object", + "required": [ + "type" + ] + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/CommandOutputArraySchema" + }, + { + "$ref": "#/definitions/CommandOutputRecordSchema" + }, + { + "$ref": "#/definitions/CommandOutputEnumSchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + { + "type": "string" + } + ] + }, + "OutputRecordFieldMap": { + "description": "Auto-generated class implementation for https://w3id.org/cwl/cwl#OutputRecordField", + "oneOf": [ + { + "additionalProperties": false, + "properties": { + "doc": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "A documentation string for this object, or an array of strings which should be concatenated." + }, + "format": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nThis is the file format that will be assigned to the output\nFile object.", + "type": "string" + }, + "label": { + "description": "A short, human-readable label of this object.", + "type": "string" + }, + "name": { + "description": "The name of the field", + "type": "string" + }, + "secondaryFiles": { + "anyOf": [ + { + "$ref": "#/definitions/SecondaryFileSchema" + }, + { + "items": { + "$ref": "#/definitions/SecondaryFileSchema" + }, + "type": "array" + } + ], + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nProvides a pattern or expression specifying files or\ndirectories that should be included alongside the primary\nfile. Secondary files may be required or optional. When not\nexplicitly specified, secondary files specified for `inputs`\nare required and `outputs` are optional. An implementation\nmust include matching Files and Directories in the\n`secondaryFiles` property of the primary file. These Files\nand Directories must be transferred and staged alongside the\nprimary file. An implementation may fail workflow execution\nif a required secondary file does not exist.\n\nIf the value is an expression, the value of `self` in the expression\nmust be the primary input or output File object to which this binding\napplies. The `basename`, `nameroot` and `nameext` fields must be\npresent in `self`. For `CommandLineTool` outputs the `path` field must\nalso be present. The expression must return a filename string relative\nto the path to the primary File, a File or Directory object with either\n`path` or `location` and `basename` fields set, or an array consisting\nof strings or File or Directory objects. It is legal to reference an\nunchanged File or Directory object taken from input as a secondaryFile.\nThe expression may return \"null\" in which case there is no secondaryFile\nfrom that expression.\n\nTo work on non-filename-preserving storage systems, portable tool\ndescriptions should avoid constructing new values from `location`, but\nshould construct relative references using `basename` or `nameroot`\ninstead.\n\nIf a value in `secondaryFiles` is a string that is not an expression,\nit specifies that the following pattern should be applied to the path\nof the primary file to yield a filename relative to the primary File:\n\n 1. If string ends with `?` character, remove the last `?` and mark\n the resulting secondary file as optional.\n 2. If string begins with one or more caret `^` characters, for each\n caret, remove the last file extension from the path (the last\n period `.` and all following characters). If there are no file\n extensions, the path is unchanged.\n 3. Append the remainder of the string to the end of the file path." + }, + "streamable": { + "description": "Only valid when `type: File` or is an array of `items: File`.\n\nA value of `true` indicates that the file is read or written\nsequentially without seeking. An implementation may use this flag to\nindicate whether it is valid to stream file contents using a named\npipe. Default: `false`.", + "type": "boolean" + }, + "type": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + "type": "object", + "required": [ + "type" + ] + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/OutputRecordSchema" + }, + { + "$ref": "#/definitions/OutputEnumSchema" + }, + { + "$ref": "#/definitions/OutputArraySchema" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The field type" + } + }, + { + "type": "string" + } + ] + }, + "InlineJavascriptRequirementMap": { + "type": "object", + "properties": { + "expressionLib": { + "description": "Additional code fragments that will also be inserted\nbefore executing the expression code. Allows for function definitions that may\nbe called from CWL expressions.", + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + } + }, + "required": [], + "description": "Indicates that the workflow platform must support inline Javascript expressions.\nIf this requirement is not present, the workflow platform must not perform expression\ninterpolation." + }, + "SchemaDefRequirementMap": { + "type": "object", + "properties": { + "types": { + "description": "The list of type definitions.", + "items": { + "anyOf": [ + { + "anyOf": [ + { + "$ref": "#/definitions/CommandInputArraySchema" + }, + { + "$ref": "#/definitions/CommandInputRecordSchema" + }, + { + "$ref": "#/definitions/CommandInputEnumSchema" + } + ] + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + } + }, + "required": [ + "types" + ], + "description": "This field consists of an array of type definitions which must be used when\ninterpreting the `inputs` and `outputs` fields. When a `type` field\ncontains a IRI, the implementation must check if the type is defined in\n`schemaDefs` and use that definition. If the type is not found in\n`schemaDefs`, it is an error. The entries in `schemaDefs` must be\nprocessed in the order listed such that later schema definitions may refer\nto earlier schema definitions.\n\n- **Type definitions are allowed for `enum` and `record` types only.**\n- Type definitions may be shared by defining them in a file and then\n `$include`-ing them in the `types` field.\n- A file can contain a list of type definitions" + }, + "LoadListingRequirementMap": { + "type": "object", + "properties": { + "loadListing": { + "enum": [ + "deep_listing", + "no_listing", + "shallow_listing" + ], + "type": "string" + } + }, + "required": [], + "description": "Specify the desired behavior for loading the `listing` field of\na Directory object for use by expressions." + }, + "DockerRequirementMap": { + "type": "object", + "properties": { + "dockerFile": { + "description": "Supply the contents of a Dockerfile which will be built using `docker build`.", + "type": "string" + }, + "dockerImageId": { + "description": "The image id that will be used for `docker run`. May be a\nhuman-readable image name or the image identifier hash. May be skipped\nif `dockerPull` is specified, in which case the `dockerPull` image id\nmust be used.", + "type": "string" + }, + "dockerImport": { + "description": "Provide HTTP URL to download and gunzip a Docker images using `docker import.", + "type": "string" + }, + "dockerLoad": { + "description": "Specify an HTTP URL from which to download a Docker image using `docker load`.", + "type": "string" + }, + "dockerOutputDirectory": { + "description": "Set the designated output directory to a specific location inside the\nDocker container.", + "type": "string" + }, + "dockerPull": { + "description": "Specify a Docker image to retrieve using `docker pull`. Can contain the\nimmutable digest to ensure an exact container is used:\n`dockerPull: ubuntu@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2`", + "type": "string" + } + }, + "required": [], + "description": "Indicates that a workflow component should be run in a\n[Docker](https://docker.com) or Docker-compatible (such as\n[Singularity](https://www.sylabs.io/) and [udocker](https://github.com/indigo-dc/udocker)) container environment and\nspecifies how to fetch or build the image.\n\nIf a CommandLineTool lists `DockerRequirement` under\n`hints` (or `requirements`), it may (or must) be run in the specified Docker\ncontainer.\n\nThe platform must first acquire or install the correct Docker image as\nspecified by `dockerPull`, `dockerImport`, `dockerLoad` or `dockerFile`.\n\nThe platform must execute the tool in the container using `docker run` with\nthe appropriate Docker image and tool command line.\n\nThe workflow platform may provide input files and the designated output\ndirectory through the use of volume bind mounts. The platform should rewrite\nfile paths in the input object to correspond to the Docker bind mounted\nlocations. That is, the platform should rewrite values in the parameter context\nsuch as `runtime.outdir`, `runtime.tmpdir` and others to be valid paths\nwithin the container. The platform must ensure that `runtime.outdir` and\n`runtime.tmpdir` are distinct directories.\n\nWhen running a tool contained in Docker, the workflow platform must not\nassume anything about the contents of the Docker container, such as the\npresence or absence of specific software, except to assume that the\ngenerated command line represents a valid command within the runtime\nenvironment of the container.\n\nA container image may specify an\n[ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint)\nand/or\n[CMD](https://docs.docker.com/engine/reference/builder/#cmd).\nCommand line arguments will be appended after all elements of\nENTRYPOINT, and will override all elements specified using CMD (in\nother words, CMD is only used when the CommandLineTool definition\nproduces an empty command line).\n\nUse of implicit ENTRYPOINT or CMD are discouraged due to reproducibility\nconcerns of the implicit hidden execution point (For further discussion, see\n[https://doi.org/10.12688/f1000research.15140.1](https://doi.org/10.12688/f1000research.15140.1)). Portable\nCommandLineTool wrappers in which use of a container is optional must not rely on ENTRYPOINT or CMD.\nCommandLineTools which do rely on ENTRYPOINT or CMD must list `DockerRequirement` in the\n`requirements` section.\n\n## Interaction with other requirements\n\nIf [EnvVarRequirement](#EnvVarRequirement) is specified alongside a\nDockerRequirement, the environment variables must be provided to Docker\nusing `--env` or `--env-file` and interact with the container's preexisting\nenvironment as defined by Docker." + }, + "SoftwareRequirementMap": { + "type": "object", + "properties": { + "packages": { + "description": "The list of software to be configured.", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/SoftwarePackage" + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + } + }, + "required": [ + "packages" + ], + "description": "A list of software packages that should be configured in the environment of\nthe defined process." + }, + "InitialWorkDirRequirementMap": { + "type": "object", + "properties": { + "listing": { + "anyOf": [ + { + "items": { + "anyOf": [ + { + "anyOf": [ + { + "$ref": "#/definitions/Directory" + }, + { + "$ref": "#/definitions/File" + }, + { + "items": { + "anyOf": [ + { + "anyOf": [ + { + "$ref": "#/definitions/Directory" + }, + { + "$ref": "#/definitions/File" + } + ] + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + }, + { + "$ref": "#/definitions/Dirent" + }, + { + "type": "string" + } + ] + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + }, + { + "type": "string" + } + ], + "description": "The list of files or subdirectories that must be staged prior\nto executing the command line tool.\n\nReturn type of each expression must validate as `[\"null\",\nFile, Directory, Dirent, {type: array, items: [File,\nDirectory]}]`.\n\nEach `File` or `Directory` that is returned by an Expression\nmust be added to the designated output directory prior to\nexecuting the tool.\n\nEach `Dirent` record that is listed or returned by an\nexpression specifies a file to be created or staged in the\ndesignated output directory prior to executing the tool.\n\nExpressions may return null, in which case they have no effect.\n\nFiles or Directories which are listed in the input parameters\nand appear in the `InitialWorkDirRequirement` listing must\nhave their `path` set to their staged location. If the same\nFile or Directory appears more than once in the\n`InitialWorkDirRequirement` listing, the implementation must\nchoose exactly one value for `path`; how this value is chosen\nis undefined." + } + }, + "required": [], + "description": "Define a list of files and subdirectories that must be staged by the workflow platform prior to executing the command line tool.\nNormally files are staged within the designated output directory. However, when running inside containers, files may be staged at arbitrary locations, see discussion for [`Dirent.entryname`](#Dirent). Together with `DockerRequirement.dockerOutputDirectory` it is possible to control the locations of both input and output files when running in containers." + }, + "EnvVarRequirementMap": { + "type": "object", + "properties": { + "envDef": { + "description": "The list of environment variables.", + "oneOf": [ + { + "items": { + "anyOf": [ + { + "$ref": "#/definitions/EnvironmentDef" + }, + { + "$ref": "#/definitions/CWLImportManual" + }, + { + "$ref": "#/definitions/CWLIncludeManual" + } + ] + }, + "type": "array" + }, + { + "patternProperties": { + "^[_a-zA-Z][a-zA-Z0-9_-]*$": { + "type": "string" + } + } + } + ] + } + }, + "required": [ + "envDef" + ], + "description": "Define a list of environment variables which will be set in the\nexecution environment of the tool. See `EnvironmentDef` for details." + }, + "ShellCommandRequirementMap": { + "type": "object", + "properties": {}, + "required": [], + "description": "Modify the behavior of CommandLineTool to generate a single string\ncontaining a shell command line. Each item in the `arguments` list must\nbe joined into a string separated by single spaces and quoted to prevent\ninterpretation by the shell, unless `CommandLineBinding` for that argument\ncontains `shellQuote: false`. If `shellQuote: false` is specified, the\nargument is joined into the command string without quoting, which allows\nthe use of shell metacharacters such as `|` for pipes." + }, + "ResourceRequirementMap": { + "type": "object", + "properties": { + "coresMax": { + "description": "Maximum reserved number of CPU cores.\n\nSee `coresMin` for discussion about fractional CPU requests.", + "type": [ + "string", + "number" + ] + }, + "coresMin": { + "description": "Minimum reserved number of CPU cores (default is 1).\n\nMay be a fractional value to indicate to a scheduling\nalgorithm that one core can be allocated to multiple\njobs. For example, a value of 0.25 indicates that up to 4\njobs may run in parallel on 1 core. A value of 1.25 means\nthat up to 3 jobs can run on a 4 core system (4/1.25 ≈ 3).\n\nProcesses can only share a core allocation if the sum of each\nof their `ramMax`, `tmpdirMax`, and `outdirMax` requests also\ndo not exceed the capacity of the node.\n\nProcesses sharing a core must have the same level of isolation\n(typically a container or VM) that they would normally have.\n\nThe reported number of CPU cores reserved for the process,\nwhich is available to expressions on the CommandLineTool as\n`runtime.cores`, must be a non-zero integer, and may be\ncalculated by rounding up the cores request to the next whole\nnumber.\n\nScheduling systems may allocate fractional CPU resources by\nsetting quotas or scheduling weights. Scheduling systems that\ndo not support fractional CPUs may round up the request to the\nnext whole number.", + "type": [ + "string", + "number" + ] + }, + "outdirMax": { + "description": "Maximum reserved filesystem based storage for the designated output directory, in mebibytes (2**20)\n\nSee `outdirMin` for discussion about fractional storage requests.", + "type": [ + "string", + "number" + ] + }, + "outdirMin": { + "description": "Minimum reserved filesystem based storage for the designated output directory, in mebibytes (2**20) (default is 1024)\n\nMay be a fractional value. If so, the actual storage request\nmust be rounded up to the next whole number. The reported\namount of storage reserved for the process, which is available\nto expressions on the CommandLineTool as `runtime.outdirSize`,\nmust be a non-zero integer.", + "type": [ + "string", + "number" + ] + }, + "ramMax": { + "description": "Maximum reserved RAM in mebibytes (2**20)\n\nSee `ramMin` for discussion about fractional RAM requests.", + "type": [ + "string", + "number" + ] + }, + "ramMin": { + "description": "Minimum reserved RAM in mebibytes (2**20) (default is 256)\n\nMay be a fractional value. If so, the actual RAM request must\nbe rounded up to the next whole number. The reported amount of\nRAM reserved for the process, which is available to\nexpressions on the CommandLineTool as `runtime.ram`, must be a\nnon-zero integer.", + "type": [ + "string", + "number" + ] + }, + "tmpdirMax": { + "description": "Maximum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20)\n\nSee `tmpdirMin` for discussion about fractional storage requests.", + "type": [ + "string", + "number" + ] + }, + "tmpdirMin": { + "description": "Minimum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20) (default is 1024)\n\nMay be a fractional value. If so, the actual storage request\nmust be rounded up to the next whole number. The reported\namount of storage reserved for the process, which is available\nto expressions on the CommandLineTool as `runtime.tmpdirSize`,\nmust be a non-zero integer.", + "type": [ + "string", + "number" + ] + } + }, + "required": [], + "description": "Specify basic hardware resource requirements.\n\n\"min\" is the minimum amount of a resource that must be reserved to\nschedule a job. If \"min\" cannot be satisfied, the job should not\nbe run.\n\n\"max\" is the maximum amount of a resource that the job shall be\nallocated. If a node has sufficient resources, multiple jobs may\nbe scheduled on a single node provided each job's \"max\" resource\nrequirements are met. If a job attempts to exceed its resource\nallocation, an implementation may deny additional resources, which\nmay result in job failure.\n\nIf both \"min\" and \"max\" are specified, an implementation may\nchoose to allocate any amount between \"min\" and \"max\", with the\nactual allocation provided in the `runtime` object.\n\nIf \"min\" is specified but \"max\" is not, then \"max\" == \"min\"\nIf \"max\" is specified by \"min\" is not, then \"min\" == \"max\".\n\nIt is an error if max < min.\n\nIt is an error if the value of any of these fields is negative.\n\nIf neither \"min\" nor \"max\" is specified for a resource, use the default values below." + }, + "WorkReuseMap": { + "type": "object", + "properties": { + "enableReuse": { + "type": [ + "string", + "boolean" + ] + } + }, + "required": [ + "enableReuse" + ], + "description": "For implementations that support reusing output from past work (on\nthe assumption that same code and same input produce same\nresults), control whether to enable or disable the reuse behavior\nfor a particular tool or step (to accommodate situations where that\nassumption is incorrect). A reused step is not executed but\ninstead returns the same output as the original execution.\n\nIf `WorkReuse` is not specified, correct tools should assume it\nis enabled by default." + }, + "NetworkAccessMap": { + "type": "object", + "properties": { + "networkAccess": { + "type": [ + "string", + "boolean" + ] + } + }, + "required": [ + "networkAccess" + ], + "description": "Indicate whether a process requires outgoing IPv4/IPv6 network\naccess. Choice of IPv4 or IPv6 is implementation and site\nspecific, correct tools must support both.\n\nIf `networkAccess` is false or not specified, tools must not\nassume network access, except for localhost (the loopback device).\n\nIf `networkAccess` is true, the tool must be able to make outgoing\nconnections to network resources. Resources may be on a private\nsubnet or the public Internet. However, implementations and sites\nmay apply their own security policies to restrict what is\naccessible by the tool.\n\nEnabling network access does not imply a publicly routable IP\naddress or the ability to accept inbound connections." + }, + "InplaceUpdateRequirementMap": { + "type": "object", + "properties": { + "inplaceUpdate": { + "type": "boolean" + } + }, + "required": [ + "inplaceUpdate" + ], + "description": "If `inplaceUpdate` is true, then an implementation supporting this\nfeature may permit tools to directly update files with `writable:\ntrue` in InitialWorkDirRequirement. That is, as an optimization,\nfiles may be destructively modified in place as opposed to copied\nand updated.\n\nAn implementation must ensure that only one workflow step may\naccess a writable file at a time. It is an error if a file which\nis writable by one workflow step file is accessed (for reading or\nwriting) by any other workflow step running independently.\nHowever, a file which has been updated in a previous completed\nstep may be used as input to multiple steps, provided it is\nread-only in every step.\n\nWorkflow steps which modify a file must produce the modified file\nas output. Downstream steps which further process the file must\nuse the output of previous steps, and not refer to a common input\n(this is necessary for both ordering and correctness).\n\nWorkflow authors should provide this in the `hints` section. The\nintent of this feature is that workflows produce the same results\nwhether or not InplaceUpdateRequirement is supported by the\nimplementation, and this feature is primarily available as an\noptimization for particular environments.\n\nUsers and implementers should be aware that workflows that\ndestructively modify inputs may not be repeatable or reproducible.\nIn particular, enabling this feature implies that WorkReuse should\nnot be enabled." + }, + "ToolTimeLimitMap": { + "type": "object", + "properties": { + "timelimit": { + "description": "The time limit, in seconds. A time limit of zero means no\ntime limit. Negative time limits are an error.", + "type": [ + "string", + "number" + ] + } + }, + "required": [ + "timelimit" + ], + "description": "Set an upper limit on the execution time of a CommandLineTool.\nA CommandLineTool whose execution duration exceeds the time\nlimit may be preemptively terminated and considered failed.\nMay also be used by batch systems to make scheduling decisions.\nThe execution duration excludes external operations, such as\nstaging of files, pulling a docker image etc, and only counts\nwall-time for the execution of the command line itself." + }, + "SubworkflowFeatureRequirementMap": { + "type": "object", + "properties": {}, + "required": [], + "description": "Indicates that the workflow platform must support nested workflows in\nthe `run` field of [WorkflowStep](#WorkflowStep)." + }, + "ScatterFeatureRequirementMap": { + "type": "object", + "properties": {}, + "required": [], + "description": "Indicates that the workflow platform must support the `scatter` and\n`scatterMethod` fields of [WorkflowStep](#WorkflowStep)." + }, + "MultipleInputFeatureRequirementMap": { + "type": "object", + "properties": {}, + "required": [], + "description": "Indicates that the workflow platform must support multiple inbound data links\nlisted in the `source` field of [WorkflowStepInput](#WorkflowStepInput)." + }, + "StepInputExpressionRequirementMap": { + "type": "object", + "properties": {}, + "required": [], + "description": "Indicate that the workflow platform must support the `valueFrom` field\nof [WorkflowStepInput](#WorkflowStepInput)." + }, + "CWLFile": { + "type": "object", + "allOf": [ + { + "oneOf": [ + { + "$ref": "#/definitions/Workflow" + }, + { + "$ref": "#/definitions/CommandLineTool" + }, + { + "$ref": "#/definitions/ExpressionTool" + } + ] + }, + { + "oneOf": [ + { + "$ref": "#/definitions/CWLDocumentMetadata" + } + ] + } + ], + "properties": { + "expression": true, + "outputs": true, + "permanentFailCodes": true, + "successCodes": true, + "baseCommand": true, + "$namespaces": true, + "id": true, + "label": true, + "stdout": true, + "requirements": true, + "inputs": true, + "intent": true, + "$schemas": true, + "stdin": true, + "steps": true, + "cwlVersion": true, + "stderr": true, + "doc": true, + "hints": true, + "class": true, + "temporaryFailCodes": true, + "arguments": true + }, + "patternProperties": { + "^\\w+:.*$": { + "type": "object" + }, + "^\\w+:\\/\\/.*": { + "type": "object" + } + }, + "additionalProperties": false + }, + "CWLGraph": { + "type": "object", + "properties": { + "$graph": { + "type": "array", + "items": { + "$ref": "#/definitions/CWLFile" + } + }, + "cwlVersion": { + "description": "CWL document version. Always required at the document root. Not\nrequired for a Process embedded inside another Process.", + "enum": [ + "draft-2", + "draft-3", + "draft-3.dev1", + "draft-3.dev2", + "draft-3.dev3", + "draft-3.dev4", + "draft-3.dev5", + "draft-4.dev1", + "draft-4.dev2", + "draft-4.dev3", + "v1.0", + "v1.0.dev4", + "v1.1", + "v1.1.0-dev1", + "v1.2", + "v1.2.0-dev1", + "v1.2.0-dev2", + "v1.2.0-dev3", + "v1.2.0-dev4", + "v1.2.0-dev5" + ], + "type": "string" + } + }, + "required": [ + "$graph" + ] + }, + "CWLGraphOrFile": { + "type": "object", + "additionalProperties": false, + "allOf": [ + { + "oneOf": [ + { + "$ref": "#/definitions/CWLGraph" + }, + { + "$ref": "#/definitions/CWLFile" + } + ] + }, + { + "$ref": "#/definitions/CWLDocumentMetadata" + } + ], + "properties": { + "expression": true, + "outputs": true, + "permanentFailCodes": true, + "successCodes": true, + "baseCommand": true, + "$graph": true, + "$namespaces": true, + "id": true, + "label": true, + "stdout": true, + "requirements": true, + "inputs": true, + "intent": true, + "$schemas": true, + "stdin": true, + "steps": true, + "cwlVersion": true, + "stderr": true, + "doc": true, + "hints": true, + "class": true, + "temporaryFailCodes": true, + "arguments": true + }, + "patternProperties": { + "^\\w+:.*$": { + "type": "object" + }, + "^\\w+:\\/\\/.*": { + "type": "object" + } + } + } + }, + "$ref": "#/paths/~1processes~1%7BprocessId%7D~1package/get/responses/200/content/application~1cwl/schema/definitions/CWLGraphOrFile" + } + }, + "application/cwl+json": { + "schema": { + "$ref": "#/paths/~1processes~1%7BprocessId%7D~1package/get/responses/200/content/application~1cwl/schema" + } + }, + "application/cwl+yaml": { + "schema": { + "$ref": "#/paths/~1processes~1%7BprocessId%7D~1package/get/responses/200/content/application~1cwl/schema" + } + } + } + }, + "404": { + "$ref": "#/components/responses/NotFound" + } + } + } + }, "/processes/{processId}/execution": { "post": { "summary": "execute a process.", @@ -3925,6 +11780,29 @@ "tags": [ "Jobs" ], + "parameters": [ + { + "$ref": "#/components/parameters/limit" + }, + { + "$ref": "#/components/parameters/processId-query" + }, + { + "$ref": "#/components/parameters/status" + }, + { + "$ref": "#/components/parameters/minDuration" + }, + { + "$ref": "#/components/parameters/maxDuration" + }, + { + "$ref": "#/components/parameters/type" + }, + { + "$ref": "#/components/parameters/datetime" + } + ], "responses": { "200": { "$ref": "#/components/responses/JobList" @@ -6360,3 +14238,4 @@ } } } + diff --git a/openapi/ogcapi-processes.yaml b/openapi/ogcapi-processes.yaml index b9d9d056..2ec03599 100644 --- a/openapi/ogcapi-processes.yaml +++ b/openapi/ogcapi-processes.yaml @@ -42,6 +42,10 @@ paths: # OGC API - Processes Part 2: Deploy, Replace, Undeploy $ref: 'paths/processes-dru/pProcessDescriptionReplaceUndeploy.yaml' + /processes/{processId}/package: + # OGC API - Processes Part 2: Deploy, Replace, Undeploy + $ref: 'paths/processes-dru/pPackage.yaml' + /processes/{processId}/execution: $ref: 'paths/processes-workflows/pExecution-workflows.yaml' diff --git a/openapi/paths/processes-core/pJobsList.yaml b/openapi/paths/processes-core/pJobsList.yaml index 7d926663..ca6258cb 100644 --- a/openapi/paths/processes-core/pJobsList.yaml +++ b/openapi/paths/processes-core/pJobsList.yaml @@ -7,6 +7,14 @@ get: operationId: getJobs tags: - Jobs + parameters: + - $ref: "../../parameters/processes-core/limit.yaml" + - $ref: "../../parameters/processes-core/processId-query.yaml" + - $ref: "../../parameters/processes-core/status.yaml" + - $ref: "../../parameters/processes-core/minDuration.yaml" + - $ref: "../../parameters/processes-core/maxDuration.yaml" + - $ref: "../../parameters/processes-core/type.yaml" + - $ref: "../../parameters/common-geodata/datetime.yaml" responses: 200: $ref: "../../responses/processes-core/rJobList.yaml" diff --git a/openapi/paths/processes-dru/pPackage.yaml b/openapi/paths/processes-dru/pPackage.yaml index 77987db5..55ff15d8 100644 --- a/openapi/paths/processes-dru/pPackage.yaml +++ b/openapi/paths/processes-dru/pPackage.yaml @@ -5,6 +5,8 @@ get: operationId: getPackage tags: - Package + parameters: + - $ref: "../../parameters/processes-core/processId-path.yaml" responses: 200: description: The formal used to deploy a process diff --git a/openapi/update.sh b/openapi/update.sh index 8f0ca32e..189ce395 100755 --- a/openapi/update.sh +++ b/openapi/update.sh @@ -12,7 +12,7 @@ done rm paths/processes-dru/pProcessDescriptionReplaceUndeploy.yaml; \ for i in processes-core/pProcessDescription.yaml \ processes-dru/pReplace.yaml \ - processes-dru/pUndeploy.yaml ; \ + processes-dru/pUndeploy.yaml; \ do \ cat paths/$i >> paths/processes-dru/pProcessDescriptionReplaceUndeploy.yaml ;\ done From 30d9ce0f5f78191a7f1d4b0b5c1962a1c34d2954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Fenoy?= Date: Fri, 14 Jun 2024 16:53:38 +0200 Subject: [PATCH 2/2] Update tag from Package to DRU for /processes/{processId}/package path --- openapi/ogcapi-processes.bundled.json | 2 +- openapi/paths/processes-dru/pPackage.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openapi/ogcapi-processes.bundled.json b/openapi/ogcapi-processes.bundled.json index aa1f36be..5379c8ec 100644 --- a/openapi/ogcapi-processes.bundled.json +++ b/openapi/ogcapi-processes.bundled.json @@ -3649,7 +3649,7 @@ "description": "Access the formal description that can be used to deploy a process on an OGC API - Processes Server Instance.\n", "operationId": "getPackage", "tags": [ - "Package" + "DRU" ], "parameters": [ { diff --git a/openapi/paths/processes-dru/pPackage.yaml b/openapi/paths/processes-dru/pPackage.yaml index 55ff15d8..af709bab 100644 --- a/openapi/paths/processes-dru/pPackage.yaml +++ b/openapi/paths/processes-dru/pPackage.yaml @@ -4,7 +4,7 @@ get: Access the formal description that can be used to deploy a process on an OGC API - Processes Server Instance. operationId: getPackage tags: - - Package + - DRU parameters: - $ref: "../../parameters/processes-core/processId-path.yaml" responses: