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

31 行
642B

  1. task freebayes {
  2. File ref_dir
  3. File fasta
  4. File chr_bam
  5. File chr_bam_bai
  6. String chromosome
  7. String half_read_length
  8. String sample_name
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. command <<<
  13. set -o pipefail
  14. set -e
  15. nt=$(nproc)
  16. /opt/freebayes/bin/freebayes -f ${ref_dir}/${fasta} --genotype-qualities --max-complex-gap ${half_read_length} ${chr_bam} > ${sample_name}_${chromosome}_fb.vcf
  17. >>>
  18. runtime {
  19. docker: docker
  20. cluster: cluster_config
  21. systemDisk: "cloud_ssd 40"
  22. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  23. }
  24. output {
  25. File vcf = "${sample_name}_${chromosome}_fb.vcf"
  26. }
  27. }