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.

5 年之前
1234567891011121314151617181920212223242526272829303132333435
  1. task zipIndex {
  2. File mother_vcf
  3. File father_vcf
  4. File twins_vcf
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. rtg bgzip ${mother_vcf}
  10. rtg index -f vcf ${mother_vcf}.gz
  11. rtg bgzip ${father_vcf}
  12. rtg index -f vcf ${father_vcf}.gz
  13. rtg bgzip ${twins_vcf}
  14. rtg index -f vcf ${twins_vcf}.gz
  15. >>>
  16. runtime {
  17. docker:docker
  18. cluster: cluster_config
  19. systemDisk: "cloud_ssd 40"
  20. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  21. }
  22. output {
  23. File mother_vcf_gz = "${mother_vcf}.gz"
  24. File father_vcf_gz = "${father_vcf}.gz"
  25. File twins_vcf_gz = "${twins_vcf}.gz"
  26. File mother_vcf_idx = "${mother_vcf}.gz.tbi"
  27. File father_vcf_idx = "${father_vcf}.gz.tbi"
  28. File twins_vcf_idx = "${twins_vcf}.gz.tbi"
  29. }
  30. }