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
před 5 roky
před 5 roky
před 5 roky
12345678910111213141516
  1. import "./tasks/bedtools.wdl" as bedtools
  2. workflow {{ project_name }} {
  3. File input_samples_file
  4. File bed_file
  5. Array[File] input_samples = read_tsv(input_samples_file)
  6. call bedtools.bedtools as bedtools {
  7. input:
  8. input_samples=input_samples,
  9. bed_file=bed_file
  10. }
  11. }