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.

29 line
423B

  1. task untar {
  2. File tar_file
  3. String docker
  4. String cluster_config
  5. String disk_size
  6. command <<<
  7. nt=$(nproc)
  8. tar -zxvf ${tar_file}
  9. for i in *fastq.gz
  10. do
  11. touch -d "2020-09-01" $i
  12. done
  13. >>>
  14. runtime {
  15. docker:docker
  16. cluster: cluster_config
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. Array[File] fastq_file = glob("*.fastq.gz")
  22. }
  23. }