only test
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.

25 satır
361B

  1. task mergefq {
  2. File fq1
  3. File fq2
  4. String fq_m
  5. String disk_size
  6. String docker
  7. String cluster_config
  8. command <<<
  9. set -euo pipefail
  10. cat ${fq1} ${fq2} > ${fq_m}
  11. >>>
  12. runtime {
  13. docker: docker
  14. systemDisk: "cloud_ssd 40"
  15. cluster: cluster_config
  16. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File merge_fq = "${fq_m}"
  20. }
  21. }