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.

27 line
432B

  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File fa
  4. File fai
  5. File bed
  6. File bam
  7. File bai
  8. String sample_id
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. call BAMReadCount.BAMReadCount as BAMReadCount {
  13. input:
  14. fa = fa,
  15. fai = fai,
  16. bed = bed,
  17. bam = bam,
  18. bai = bai,
  19. docker = docker,
  20. disk_size = disk_size,
  21. cluster_config=cluster_config,
  22. sample_id=sample_id
  23. }
  24. }