You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- task catreads {
- File fq1
- File fq2
- String fq3
- String disk_size
- String cluster_config
-
- command <<<
- cat ${fq1} ${fq2} > ${fq3}
- >>>
-
- runtime {
- systemDisk: "cloud_ssd 40"
- cluster: cluster_config
- dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- File merge_fq = "${fq3}"
- }
- }
|