projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'main' into 15814-wb2-secrets
[arvados.git]
/
sdk
/
cwl
/
tests
/
cat2.cwl
1
# Copyright (C) The Arvados Authors. All rights reserved.
2
#
3
# SPDX-License-Identifier: Apache-2.0
4
5
cwlVersion: v1.2
6
class: CommandLineTool
7
inputs:
8
- id: inp
9
type: File
10
secondaryFiles:
11
- pattern: .tbi
12
required: true
13
stdout: $(inputs.inp.nameroot).catted
14
outputs:
15
out:
16
type: stdout
17
arguments: [cat, '$(inputs.inp.path)', '$(inputs.inp.secondaryFiles[0].path)']