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.

2 yıl önce
123456789101112131415161718192021222324252627
  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. }