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.

23 line
431B

  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File reference
  4. File bedfile
  5. File bamfile
  6. String sample_id
  7. String docker
  8. String cluster_config
  9. String disk_size
  10. call BAMReadCount.BAMReadCount as BAMReadCount {
  11. input:
  12. reference = reference,
  13. bedfile = bedfile,
  14. bamfile = bamfile,
  15. docker = docker,
  16. disk_size = disk_size,
  17. cluster_config=cluster_config,
  18. sample_id=sample_id
  19. }
  20. }