Created
January 22, 2018 18:12
-
-
Save anton-khodak/a49af4acd5b3fe39b5a902441f324da4 to your computer and use it in GitHub Desktop.
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 | |
class: Workflow | |
cwlVersion: v1.0 | |
inputs: [] | |
outputs: [] | |
steps: | |
step1: | |
in: [] | |
out: [] | |
run: | |
class: CommandLineTool | |
inputs: [] | |
outputs: [] | |
baseCommand: "sleep" | |
arguments: | |
- "5" | |
step2: | |
in: [] | |
out: [] | |
run: | |
class: CommandLineTool | |
inputs: [] | |
outputs: [] | |
baseCommand: "sleep" | |
arguments: | |
- "6" | |
step3: | |
in: [] | |
out: [] | |
run: | |
class: CommandLineTool | |
inputs: [] | |
outputs: [] | |
baseCommand: "sleep" | |
arguments: | |
- "7" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment