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 mergefq {
- file fq_list
- String fq_m
- String disk_size
- String cluster_config
-
- command <<<
- set -euo pipefail
- cat ${fq_list}|IFS=";" read -a myarray
- cat ${myarray[@]} >${fq_m}
-
- >>>
-
- runtime {
- systemDisk: "cloud_ssd 40"
- cluster: cluster_config
- dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- File merge_fq = "${fq_m}"
- }
- }
|