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 335B

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