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.

33 lines
876B

  1. task sister {
  2. File LCL5_vcf
  3. File LCL6_vcf
  4. File ref_dir
  5. String fasta
  6. String family_name
  7. String docker
  8. String cluster_config
  9. String disk_size
  10. command <<<
  11. mkdir sister
  12. vbt varcomp -called ${LCL5_vcf} -base ${LCL6_vcf} -ref ${ref_dir}/${fasta} -outDir sister -filter none
  13. mv sister/TPBase.vcf ${family_name}.sister.consistent.vcf
  14. mv sister/FP.vcf ${family_name}.LCL5.uniq.vcf
  15. mv sister/FN.vcf ${family_name}.LCL6.uniq.vcf
  16. mv sister/log.txt ${family_name}.sister.vbt.log.txt
  17. >>>
  18. runtime {
  19. docker:docker
  20. cluster: cluster_config
  21. systemDisk: "cloud_ssd 40"
  22. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  23. }
  24. output {
  25. File sister_consistent_vcf = "${family_name}.sister.consistent.vcf"
  26. File LCL5_uniq = "${family_name}.LCL5.uniq.vcf"
  27. File LCL6_uniq = "${family_name}.LCL6.uniq.vcf"
  28. File log = "${family_name}.sister.vbt.log.txt"
  29. }
  30. }