Created
March 20, 2022 09:18
-
-
Save kinow/2b67219a013f1d0ea5f3432e768d16b6 to your computer and use it in GitHub Desktop.
tests streamflow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env cwl-runner | |
cwlVersion: v1.0 | |
class: Workflow | |
label: "Hello World" | |
doc: "Outputs a message using echo" | |
inputs: [] | |
outputs: | |
response: | |
outputSource: step0/response | |
type: File | |
steps: | |
step0: | |
run: | |
class: CommandLineTool | |
inputs: | |
message: | |
type: string | |
doc: "The message to print" | |
default: "Hello World" | |
inputBinding: | |
position: 1 | |
baseCommand: echo | |
stdout: response.txt | |
outputs: | |
response: | |
type: stdout | |
in: [] | |
out: [response] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env streamflow | |
version: v1.0 | |
workflows: | |
master: | |
type: cwl | |
config: | |
file: hello.cwl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment