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.

21 lines
267B

  1. import "./tasks/depth.wdl" as depth
  2. workflow {{ project_name }} {
  3. File bam
  4. File bam_index
  5. String chromosome
  6. String sample_name
  7. call depth.depth as depth {
  8. input:
  9. bam=bam,
  10. bam_index=bam_index,
  11. chromosome=chromosome,
  12. sample_name=sample_name
  13. }
  14. }