Add 'sdk/java-v2/' from commit '55f103e336ca9fb8bf1720d2ef4ee8dd4e221118'
[arvados.git] / sdk / cwl / tests / federation / cases / md5sum-tool-hint.cwl
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 cwlVersion: v1.0
6 class: CommandLineTool
7 $namespaces:
8   arv: "http://arvados.org/cwl#"
9 requirements:
10   InlineJavascriptRequirement: {}
11 hints:
12   arv:ClusterTarget:
13     cluster_id: $(inputs.runOnCluster)
14 inputs:
15   inp: File
16   runOnCluster: string
17 outputs:
18   hash:
19     type: File
20     outputBinding:
21       glob: out.txt
22 stdin: $(inputs.inp.path)
23 stdout: out.txt
24 arguments: ["md5sum", "-"]