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ů.
|
- import "./tasks/bedtools.wdl" as bedtools
-
- workflow {{ project_name }} {
-
- File input_samples_file
- File bed_file
- Array[Array[File]] input_samples = read_tsv(input_samples_file)
-
- call bedtools.bedtools as bedtools {
- input:
- input_samples=input_samples,
- bed_file=bed_file
-
- }
- }
|