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.

5 年之前
5 年之前
5 年之前
5 年之前
5 年之前
1234567891011121314151617181920212223242526
  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. cat ${prefix}_annotated.vcf | grep -v '##' > ${prefix}.txt
  12. >>>
  13. runtime {
  14. docker:docker
  15. cluster: cluster_config
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  18. }
  19. output {
  20. File annotated_vcf = "${prefix}_annotated.vcf"
  21. File annotated_txt = "${prefix}.txt"
  22. }
  23. }