19109: Add test case for discovering & uploading secondary files
[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: catted
14 outputs:
15   out:
16     type: stdout
17 arguments: [cat, '$(inputs.inp.path)', '$(inputs.inp.secondaryFiles[0].path)']