Advertisement
Guest User

Untitled

a guest
Oct 20th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #!/usr/bin/env cwl-runner
  2. cwlVersion: v1.0
  3. $graph:
  4. - id: echocmd
  5. class: CommandLineTool
  6. inputs:
  7. echo-in:
  8. type: string
  9. label: "Message"
  10. doc: "The message to print"
  11. default: "Hello World"
  12. inputBinding: {}
  13. outputs:
  14. echo-out:
  15. type: stdout
  16. label: "Printed Message"
  17. doc: "The file containing the message"
  18. baseCommand: echo
  19. stdout: messageout.txt
  20.  
  21. - id: main
  22. class: Workflow
  23. label: "Hello World"
  24. doc: "Puts a message into a file using echo"
  25. inputs: []
  26. outputs:
  27. output:
  28. type: File
  29. outputSource: step0/echo-out
  30. steps:
  31. step0:
  32. run: "#echocmd"
  33. in: []
  34. out: [echo-out]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement