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_family.wdl 702B

4 년 전
1234567891011121314151617181920212223242526272829303132333435
  1. task merge_family {
  2. File LCL5_vcf_gz
  3. File LCL5_vcf_idx
  4. File LCL6_vcf_gz
  5. File LCL6_vcf_idx
  6. File LCL7_vcf_gz
  7. File LCL7_vcf_idx
  8. File LCL8_vcf_gz
  9. File LCL8_vcf_idx
  10. String project
  11. String rep
  12. String docker
  13. String cluster_config
  14. String disk_size
  15. command <<<
  16. /opt/rtg-tools/dist/rtg-tools-3.10.1-4d58ead/rtg vcfmerge --force-merge-all -o ${project}_${rep}.family.vcf.gz ${LCL5_vcf_gz} ${LCL6_vcf_gz} ${LCL7_vcf_gz} ${LCL8_vcf_gz}
  17. gunzip ${project}_${rep}.family.vcf.gz
  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 merged_vcf = "${project}_${rep}.family.vcf"
  27. }
  28. }