|
1234567891011121314151617181920212223242526 |
- import "./tasks/fastp.wdl" as fastp
-
- workflow {{ project_name }} {
- File in1
- File in2
- String sample_id
- String docker
- String cluster_config
- String disk_size
-
-
- call fastp.fastp as fastp{
- input:
- in1=in1,
- in2=in2,
- sample_id=sample_id,
- docker=docker,
- cluster_config=cluster_config,
- disk_size=disk_size
-
-
- }
-
-
-
- }
|