Calculate the bed coverage of multiple BAM files before and after dedup
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
368B

  1. import "./tasks/bedtools.wdl" as bedtools
  2. workflow {{ project_name }} {
  3. File input_bam_file
  4. File input_bai_file
  5. File bed_file
  6. Boolean include_dup
  7. Array[File] bam = read_lines(input_bam_file)
  8. Array[File] bai = read_lines(input_bai_file)
  9. call bedtools.bedtools as bedtools {
  10. input:
  11. bam=bam,
  12. bai=bai,
  13. include_dup=include_dup,
  14. bed_file=bed_file
  15. }
  16. }