comparison env/lib/python3.9/site-packages/cwltool/tests/secondary-files-string-v1.cwl @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 #!/usr/bin/env cwl-runner
2 cwlVersion: v1.0
3 class: CommandLineTool
4 baseCommand:
5 - touch
6 - 2.fastq
7 requirements:
8 - class: InitialWorkDirRequirement
9 listing:
10 - $(inputs.fasta_path)
11 inputs:
12 fasta_path:
13 type: File
14 secondaryFiles: ^.fastq
15 outputs:
16 fasta:
17 type: File
18 secondaryFiles: ^.fastq
19 outputBinding:
20 glob: $(inputs.fasta_path.basename)