Calculate the bed coverage of multiple BAM files before and after dedup
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 5 roky
před 5 roky
před 5 roky
před 5 roky
1234567891011121314151617
  1. import "./tasks/bedtools.wdl" as bedtools
  2. workflow {{ project_name }} {
  3. File input_bam_file
  4. File input_bai_file
  5. File bed_file
  6. Array[File] bam = read_lines(input_bam_file)
  7. Array[File] bai = read_lines(input_bai_file)
  8. call bedtools.bedtools as bedtools {
  9. input:
  10. bam=bam,
  11. bai=bai,
  12. bed_file=bed_file
  13. }
  14. }