Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

24 lines
474B

  1. task votes {
  2. File merged_vcf
  3. String 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. }