Skip to content
Snippets Groups Projects
Commit 7efff571 authored by Dominik Brilhaus's avatar Dominik Brilhaus
Browse files

remove cwl aux-tools

parent be46d9df
No related branches found
No related tags found
1 merge request!11Restructure cwl
cwlVersion: v1.2
class: ExpressionTool
doc: |
Takes Files (e.g. from a workflow step) and yields them in a desired directory.
requirements:
- class: InlineJavascriptRequirement
inputs:
files: File[]
destination: string
expression: |
${
return {"outDir": {
"class": "Directory",
"basename": inputs.destination,
"listing": inputs.files
} };
}
outputs:
outDir: Directory
\ No newline at end of file
......@@ -57,7 +57,7 @@ steps:
BootstrapSamples: BootstrapSamples
out: [outFolder]
collectResults:
run: ../_aux-tools/yield-dirInDestination.cwl
run: ./yield-dirInDestination.cwl
scatter: inDir
in:
inDir: quant/outFolder
......
test
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment