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.

catreads.wdl 369B

4 vuotta sitten
3 vuotta sitten
4 vuotta sitten
3 vuotta sitten
4 vuotta sitten
4 vuotta sitten
4 vuotta sitten
1234567891011121314151617181920212223
  1. task catreads {
  2. Array[File] fqs
  3. String sample_name
  4. String disk_size
  5. String cluster_config
  6. command <<<
  7. set -o pipefail
  8. set -e
  9. cat ${sep=" " fqs} > ${sample_name}
  10. >>>
  11. runtime {
  12. systemDisk: "cloud_ssd 40"
  13. cluster: cluster_config
  14. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  15. }
  16. output {
  17. File merge_fq = "${sample_name}"
  18. }
  19. }