Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

33 lignes
634B

  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 docker
  12. String cluster_config
  13. String disk_size
  14. command <<<
  15. /opt/rtg-tools/dist/rtg-tools-3.10.1-4d58ead/rtg vcfmerge --force-merge-all -o ${project}.family.vcf.gz ${LCL5_vcf_gz} ${LCL6_vcf_gz} ${LCL7_vcf_gz} ${LCL8_vcf_gz}
  16. >>>
  17. runtime {
  18. docker:docker
  19. cluster: cluster_config
  20. systemDisk: "cloud_ssd 40"
  21. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  22. }
  23. output {
  24. File merged_vcf = "${project}.family.vcf"
  25. }
  26. }