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.

merge.wdl 661B

5 년 전
1234567891011121314151617181920212223242526
  1. task merge {
  2. Array[File] violation_vcf_gz
  3. Array[File] violation_vcf_idx
  4. Array[File] consistent_vcf_gz
  5. Array[File] consistent_vcf_idx
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. rtg vcfmerge --force-merge-all --no-gzip -o all.violation.vcf ${sep=" " violation_vcf_gz}
  11. rtg vcfmerge --force-merge-all --no-gzip -o all.consistent.vcf ${sep=" " consistent_vcf_gz}
  12. >>>
  13. runtime {
  14. docker:docker
  15. cluster: cluster_config
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  18. }
  19. output {
  20. File violation_merged_vcf = "all.violation.vcf"
  21. File consistent_merged_vcf = "all.consistent.vcf"
  22. }
  23. }