您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
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. }