|
1234567891011121314151617181920 |
- import "./tasks/depth.wdl" as depth
-
- workflow {{ project_name }} {
-
- File bam
- File bam_index
- String chromosome
- String sample_name
-
-
- call depth.depth as depth {
- input:
- bam=bam,
- bam_index=bam_index,
- chromosome=chromosome,
- sample_name=sample_name
- }
-
- }
-
|