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 302B

4 anni fa
123456789101112131415161718192021
  1. task catreads {
  2. File fq1
  3. File fq2
  4. String fq3
  5. String disk_size
  6. String cluster_config
  7. command <<<
  8. cat ${fq1} ${fq2} > ${fq3}
  9. >>>
  10. runtime {
  11. systemDisk: "cloud_ssd 40"
  12. cluster: cluster_config
  13. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  14. }
  15. output {
  16. File fq3 = "${fq3}"
  17. }
  18. }