Calculate the bed coverage of multiple BAM files before and after dedup
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- 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)
- Array[File] bam = input_samples[0]
- call bedtools.bedtools as bedtools {
- input:
- bam=bam,
- bed_file=bed_file
-
- }
- }
|