File tree Expand file tree Collapse file tree 3 files changed +40
-1
lines changed Expand file tree Collapse file tree 3 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 66on :
77 # Triggers the workflow on push or pull request events but only for the main branch
88 push :
9- branches : [ main ]
9+ branches : [ main, 1.2.1_proposed ]
1010 pull_request :
1111 branches : [ main, 1.2.1_proposed ]
1212
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env cwl-runner
2+ class: CommandLineTool
3+ cwlVersion: v1.2
4+ doc : "Print the contents of a file to stdout using 'cat' running in a docker container. "
5+ requirements :
6+ DockerRequirement:
7+ dockerPull: docker.io/debian:stable-slim
8+ inputs :
9+ file1:
10+ type : File
11+ label : Input File
12+ doc : "The file that will be copied using 'cat'"
13+ inputBinding : {position : 1}
14+ outputs :
15+ output_file:
16+ type : File
17+ outputBinding : {glob : output.txt}
18+ baseCommand : cat
19+ stdout : output.txt
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env cwl-runner
2+
3+ class: CommandLineTool
4+ cwlVersion: v1.2
5+
6+ requirements :
7+ - class: DockerRequirement
8+ dockerPull: docker.io/debian:stable-slim
9+
10+ inputs :
11+ file1: stdin
12+
13+ outputs :
14+ output:
15+ type : File
16+ outputBinding : { glob : output }
17+
18+ baseCommand : [wc]
19+
20+ stdout : output
You can’t perform that action at this time.
0 commit comments