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.

28 lines
803B

  1. task KeepVar {
  2. File violation_merged_vcf
  3. File consistent_merged_vcf
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. python /opt/select_small_variants_supported_by_all_callsets.py -i ${violation_merged_vcf} -o violation.all.selected
  9. python /opt/select_small_variants_supported_by_all_callsets.py -i ${consistent_merged_vcf} -o consistent.all.selected
  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 violation_keeped_vcf = "violation.all.selected.vcf"
  19. File violation_outlier_vcf = "violation.all.selected_outlier.vcf"
  20. File consistent_keeped_vcf = "consistent.all.selected.vcf"
  21. File consistent_outlier_vcf = "consistent.all.selected_outlier.vcf"
  22. }
  23. }