Skip to content

Instantly share code, notes, and snippets.

@kinow
Created March 20, 2022 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kinow/2b67219a013f1d0ea5f3432e768d16b6 to your computer and use it in GitHub Desktop.
Save kinow/2b67219a013f1d0ea5f3432e768d16b6 to your computer and use it in GitHub Desktop.
tests streamflow
#!/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]
#!/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