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.

jaccard_index.wdl 607B

5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
123456789101112131415161718192021222324252627282930313233
  1. task JI {
  2. File vcf_a
  3. File vcf_b
  4. String dir_name
  5. File sdf
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. rtg bgzip ${vcf_a} -c > vcf_a.vcf.gz
  13. rtg index vcf_a.vcf.gz
  14. rtg bgzip ${vcf_b} -c > vcf_b.vcf.gz
  15. rtg index vcf_b.vcf.gz
  16. rtg vcfeval -b vcf_a.vcf.gz -c vcf_b.vcf.gz -o ${dir_name} -t ${sdf}
  17. mv ${dir_name}/summary.txt ${dir_name}.txt
  18. >>>
  19. runtime {
  20. docker:docker
  21. cluster: cluster_config
  22. systemDisk: "cloud_ssd 40"
  23. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  24. }
  25. output {
  26. File JI_summary = "${dir_name}.txt"
  27. }
  28. }