Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/cwltool/tests/secondary-files.cwl @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
| author | shellac |
|---|---|
| date | Mon, 01 Jun 2020 08:59:25 -0400 |
| parents | 79f47841a781 |
| children |
comparison
equal
deleted
inserted
replaced
| 4:79f47841a781 | 5:9b1c78e6ba9c |
|---|---|
| 1 #!/usr/bin/env cwl-runner | |
| 2 | |
| 3 cwlVersion: v1.1.0-dev1 | |
| 4 | |
| 5 requirements: | |
| 6 - class: InlineJavascriptRequirement | |
| 7 - class: ShellCommandRequirement | |
| 8 | |
| 9 class: CommandLineTool | |
| 10 | |
| 11 inputs: | |
| 12 fasta_path: | |
| 13 type: File | |
| 14 secondaryFiles: | |
| 15 - pattern: ^.fastq | |
| 16 required: true | |
| 17 - pattern: .crai | |
| 18 required: false | |
| 19 - .bai? | |
| 20 - pattern: "${ return null }" | |
| 21 | |
| 22 outputs: | |
| 23 bai_list: | |
| 24 type: File | |
| 25 outputBinding: | |
| 26 glob: lsout | |
| 27 secondaryFiles: | |
| 28 - .bai? | |
| 29 - pattern: "${ return null }" | |
| 30 - pattern: .crai | |
| 31 required: false | |
| 32 - pattern: .idx | |
| 33 | |
| 34 baseCommand: ["ls"] | |
| 35 | |
| 36 stdout: lsout |
