projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
21891: Comment to explain mysterious numbers 13 and 17 in test case.
[arvados.git]
/
tools
/
salt-install
/
tests
/
hasher.cwl
1
#!/usr/bin/env cwl-runner
2
# Copyright (C) The Arvados Authors. All rights reserved.
3
#
4
# SPDX-License-Identifier: Apache-2.0
5
6
cwlVersion: v1.0
7
class: CommandLineTool
8
9
baseCommand: md5sum
10
inputs:
11
inputfile:
12
type: File
13
inputBinding:
14
position: 1
15
outputname:
16
type: string
17
18
stdout: $(inputs.outputname)
19
20
outputs:
21
hasher_out:
22
type: File
23
outputBinding:
24
glob: $(inputs.outputname)