Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Haplotyper.wdl 758B

il y a 6 ans
12345678910111213141516171819202122232425262728293031323334353637
  1. task Haplotyper {
  2. String SENTIEON_INSTALL_DIR
  3. String fasta
  4. File recaled_bam
  5. File recaled_bam_index
  6. File dbsnp_dir
  7. File regions
  8. String dbsnp
  9. File ref_dir
  10. String sample
  11. String docker
  12. String cluster_config
  13. String disk_size
  14. command <<<
  15. set -o pipefail
  16. set -e
  17. export SENTIEON_LICENSE=192.168.0.55:8990
  18. nt=$(nproc)
  19. ${SENTIEON_INSTALL_DIR}/bin/sentieon driver --interval ${regions} -r ${ref_dir}/${fasta} -t $nt -i ${recaled_bam} --algo Haplotyper -d ${dbsnp_dir}/${dbsnp} ${sample}_hc.vcf
  20. >>>
  21. runtime {
  22. dockerTag:docker
  23. cluster: cluster_config
  24. systemDisk: "cloud_ssd 40"
  25. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  26. }
  27. output {
  28. File vcf = "${sample}_hc.vcf"
  29. File vcf_idx = "${sample}_hc.vcf.idx"
  30. }
  31. }