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.

25 line
563B

  1. import "./tasks/gatk.wdl" as gatk
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File normal_bam
  5. File normal_bai
  6. File gatk4_database
  7. String gatk_docker
  8. String gatk_cluster
  9. String disk_size
  10. call gatk.gatk as gatk {
  11. input:
  12. sample_id=sample_id,
  13. normal_bam=normal_bam,
  14. normal_bai=normal_bai,
  15. gatk4_database=gatk4_database,
  16. docker=gatk_docker,
  17. cluster=gatk_cluster,
  18. disk_size=disk_size
  19. }
  20. }