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.

41 line
731B

  1. task vcfeval {
  2. String sample_id
  3. File vcf1
  4. File vcf2
  5. File SDF
  6. String docker
  7. String cluster
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. mkdir -p ${sample_id}
  13. /opt/rtg-tools/dist/rtg-tools-3.10.1-4d58ead/rtg vcfeval -b ${vcf1} \
  14. -c ${vcf2} \
  15. -o ${sample_id}/results \
  16. -t ${SDF}
  17. find . -depth > fileList.txt
  18. >>>
  19. runtime {
  20. docker: docker
  21. cluster: cluster
  22. systemDisk: "cloud_ssd 40"
  23. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  24. }
  25. output {
  26. File fileList = "fileList.txt"
  27. File Summary = "summary.txt"
  28. }
  29. }