22084: Give 3.0.0 upgrade notes their own anchor
[arvados.git] / sdk / cwl / tests / wf / output_dir.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: ExpressionTool
7 inputs:
8   file1:
9     type: Directory
10     loadListing: deep_listing
11 outputs:
12   val: Directory
13   val2: File[]
14 requirements:
15   InlineJavascriptRequirement: {}
16 expression: |
17   ${
18    var val2 = inputs.file1.listing.filter(function (f) { return f.class == 'File'; } );
19    return {val: inputs.file1, val2: val2}
20   }