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.

35 lines
689B

  1. task GVCFtyper {
  2. File ref_dir
  3. String SENTIEON_INSTALL_DIR
  4. String fasta
  5. Array[File] vcf
  6. Array[File] vcf_idx
  7. String project
  8. String docker
  9. String cluster_config
  10. String disk_size
  11. command <<<
  12. set -o pipefail
  13. set -e
  14. export SENTIEON_LICENSE=192.168.0.55:8990
  15. nt=$(nproc)
  16. ${SENTIEON_INSTALL_DIR}/bin/sentieon driver -r ${ref_dir}/${fasta} --algo GVCFtyper ${project}.joint.g.vcf ${sep=" " vcf}
  17. >>>
  18. runtime {
  19. docker:docker
  20. cluster: cluster_config
  21. systemDisk: "cloud_ssd 40"
  22. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  23. }
  24. output {
  25. File merged_gvcf = "${project}.joint.g.vcf"
  26. File merged_gvcf_idx = "${project}.joint.g.vcf.idx"
  27. }
  28. }