radiofreekruzr

Untitled

Nov 13th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. cwlVersion: v1.0
  2. class: Workflow
  3. inputs:
  4. muscle_infile: File
  5. diags_flag: boolean
  6. substitutionmodel: string
  7.  
  8. outputs:
  9. output:
  10. type: File
  11. outputBinding: raxml.output
  12.  
  13. steps:
  14. run_muscle:
  15. class: CommandLineTool
  16. baseCommand: muscle
  17. inputs:
  18. muscle_infile:
  19. type: File
  20. inputBinding:
  21. prefix: -in
  22. separate: true
  23. position: 1
  24. diags_flag:
  25. type: boolean
  26. inputBinding:
  27. position: 2
  28. prefix: -diags
  29. outputs:
  30. muscle_outfile:
  31. type: File
  32. outputBinding:
  33. glob: muscle_out.fasta
  34.  
  35. run_raxml:
  36. run:
  37. class: CommandLineTool
  38. baseCommand: raxmlHPC
  39. inputs:
  40. raxml_infile:
  41. type: File
  42. inputBinding:
  43. prefix: -s
  44. separate: true
  45. position: 1
  46. glob: muscle_out.fasta
  47. substitutionmodel:
  48. type: string
  49. inputBinding:
  50. prefix: -m
  51. separate: true
  52. position: 2
  53. outputs:
  54. raxml_output:
  55. type: File
  56. outputBinding:
  57. prefix: -n
  58. separate: true
  59. glob: raxml_output
Advertisement
Add Comment
Please, Sign In to add comment