Calculate the bed coverage of multiple BAM files before and after dedup
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

workflow.wdl 351B

5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
5 lat temu
123456789101112131415161718
  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. Array[File] bam = input_samples[0]
  7. Array[File] bai = input_samples[1]
  8. call bedtools.bedtools as bedtools {
  9. input:
  10. bam=bam,
  11. bai=bai,
  12. bed_file=bed_file
  13. }
  14. }