Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

28 lines
571B

  1. import "./tasks/teprof_s2.wdl" as teprof_s2
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File bam_file
  5. File filter_combined_candidates
  6. String disk_size
  7. String teprof_docker
  8. String teprof_cluster
  9. call teprof_s2.teprof_s2 as teprof_s2 {
  10. input:
  11. sample_id=sample_id,
  12. bam_file=bam_file,
  13. filter_combined_candidates=filter_combined_candidates,
  14. disk_size=disk_size,
  15. docker=teprof_docker,
  16. cluster=teprof_cluster
  17. }
  18. }