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

replicate_consensus.wdl 477B

12345678910111213141516171819202122232425
  1. task replicate_consensus {
  2. File chromo_file
  3. String chromo
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. python /opt/replicates_consensus.py -vcf ${chromo_file} -prefix ${chromo}
  9. >>>
  10. runtime {
  11. docker:docker
  12. cluster: cluster_config
  13. systemDisk: "cloud_ssd 40"
  14. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  15. }
  16. output {
  17. File chromo_consensus = "${chromo}_all_summary.txt"
  18. File consensus_vcf = "${chromo}_consensus.vcf"
  19. }
  20. }