Calculate the bed coverage of multiple BAM files before and after dedup
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
461B

  1. import "./tasks/cp_bam.wdl" as cp_bam
  2. import "./tasks/bedtools.wdl" as bedtools
  3. workflow {{ project_name }} {
  4. File input_samples_file
  5. File bed_file
  6. Array[Array[File]] input_samples = read_tsv(input_samples_file)
  7. scatter (sample in input_samples) {
  8. call cp_bam.cp_bam as cp_bam {
  9. input:
  10. bam=sample[0],
  11. bai=sample[1],
  12. }
  13. call bedtools.bedtools as bedtools {
  14. input:
  15. bam=sample[0],
  16. bai=sample[1],
  17. bed_file=bed_file
  18. }
  19. }
  20. }