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.

workflow.wdl 252B

5 anni fa
5 anni fa
5 anni fa
5 anni fa
5 anni fa
5 anni fa
123456789101112131415
  1. import "./tasks/bedtools.wdl" as bedtools
  2. workflow {{ project_name }} {
  3. File input_samples_file
  4. File bed_file
  5. Array[File] bam = read_lines(input_samples_file)
  6. call bedtools.bedtools as bedtools {
  7. input:
  8. bam=bam,
  9. bed_file=bed_file
  10. }
  11. }