|
- import "./tasks/teprof_s2.wdl" as teprof_s2
-
- workflow {{ project_name }} {
- String sample_id
- File bam_file
- File filter_combined_candidates
- String disk_size
-
-
- String teprof_docker
- String teprof_cluster
-
-
-
- call teprof_s2.teprof_s2 as teprof_s2 {
- input:
- sample_id=sample_id,
- bam_file=bam_file,
- filter_combined_candidates=filter_combined_candidates,
- disk_size=disk_size,
- docker=teprof_docker,
- cluster=teprof_cluster
- }
-
-
-
- }
|