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.

4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
12345678910111213141516171819202122232425262728
  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. tree > tree.file.txt
  10. ls > ls.file.txt
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. Array[File] fastq_file = glob("*.fastq.gz")
  20. File tree_file = "tree.file.txt"
  21. File ls_file = "ls.file.txt"
  22. }
  23. }