X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/aea835bc965d42e225c2641b0210c4b521f6dc4e..927524f1be454de021180b74999d682780b8cb6b:/sdk/cwl/tests/wf/scatter2_subwf.cwl diff --git a/sdk/cwl/tests/wf/scatter2_subwf.cwl b/sdk/cwl/tests/wf/scatter2_subwf.cwl index df4d992c35..218b0c5018 100644 --- a/sdk/cwl/tests/wf/scatter2_subwf.cwl +++ b/sdk/cwl/tests/wf/scatter2_subwf.cwl @@ -1,10 +1,22 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + { "$graph": [ { + "$namespaces": { + "arv": "http://arvados.org/cwl#" + }, "class": "Workflow", + "cwlVersion": "v1.0", "hints": [], "id": "#main", "inputs": [ + { + "id": "#main/fileblub", + "type": "File" + }, { "id": "#main/sleeptime", "type": "int" @@ -50,9 +62,10 @@ "run": { "baseCommand": "sleep", "class": "CommandLineTool", + "id": "#main/sleep1/subtool", "inputs": [ { - "id": "#main/sleep1/sleeptime", + "id": "#main/sleep1/subtool/sleeptime", "inputBinding": { "position": 1 }, @@ -61,7 +74,7 @@ ], "outputs": [ { - "id": "#main/sleep1/out", + "id": "#main/sleep1/subtool/out", "outputBinding": { "outputEval": "out" }, @@ -73,5 +86,8 @@ ] } ], + "$namespaces": { + "arv": "http://arvados.org/cwl#" + }, "cwlVersion": "v1.0" -} \ No newline at end of file +}