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.

26 lines
507B

  1. task mergeVCFInfo {
  2. Array[File] vcf_gz
  3. Array[File] vcf_idx
  4. String sample
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. rtg vcfmerge --force-merge-all -o ${sample}.merged.info.vcf.gz ${sep=" " vcf_gz}
  10. >>>
  11. runtime {
  12. docker:docker
  13. cluster: cluster_config
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  16. }
  17. output {
  18. File merged_vcf = "${sample}.merged.info.vcf.gz"
  19. File merged_vcf_idx = "${sample}.merged.info.vcf.gz.tbi"
  20. }
  21. }