選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

workflow.wdl 267B

1234567891011121314151617181920
  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. }