您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

merge_mendelian_vote.wdl 491B

123456789101112131415161718192021222324
  1. task merge_mendelian_vote {
  2. File vote_file
  3. File mendelian_file
  4. String output_prefix
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. python /opt/merge_mendelian_vote.py ${mendelian_file} ${vote_file} ${output_prefix}.mendelian.vote.txt
  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 mendelian_vote = "${output_prefix}.mendelian.vote.txt"
  19. }
  20. }