19109: Add test case for discovering & uploading secondary files
[arvados.git] / sdk / cwl / tests / 19109-upload-secondary.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: Workflow
7 inputs:
8   file1:
9     type: File?
10     secondaryFiles:
11       - pattern: .tbi
12         required: true
13 outputs:
14   out:
15     type: File
16     outputSource: cat/out
17 steps:
18   cat:
19     in:
20       inp: file1
21     run: cat2.cwl
22     out: [out]