Calculate the bed coverage of multiple BAM files before and after dedup
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

21 lines
329B

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