Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
333B

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