You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflow.wdl 601B

1 year ago
123456789101112131415161718192021222324
  1. import "./tasks/battenberg.wdl" as battenberg
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File tumor_bam
  5. String normal_id
  6. File normal_bam
  7. String battenberg_docker
  8. String battenberg_cluster
  9. String disk_size
  10. call battenberg.battenberg as battenberg {
  11. input:
  12. sample_id=sample_id,
  13. tumor_bam=tumor_bam,
  14. normal_id=normal_id,
  15. normal_bam=normal_bam,
  16. docker=battenberg_docker,
  17. cluster=battenberg_cluster,
  18. disk_size=disk_size
  19. }
  20. }