Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

24 lines
472B

  1. task votes {
  2. File merged_vcf
  3. File vcf_dup
  4. String sample
  5. String prefix
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. python /opt/high_confidence_call_vote.py -vcf ${merged_vcf} -dup ${vcf_dup} -sample ${sample} -prefix ${prefix}
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File annotated_vcf = "${prefix}_annotated.vcf"
  20. }
  21. }