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 899B

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