|
12345678910111213141516 |
- import "./tasks/index.wdl" as index
-
- workflow {{ project_name }} {
- File bam
- String samtools_docker
- String cluster_config
- String disk_size
-
- call index.index as index {
- input:
- bam=bam,
- docker=samtools_docker,
- cluster_config=cluster_config,
- disk_size=disk_size
- }
- }
|