Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 lines
584B

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