Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

42 rindas
921B

  1. task TNscope {
  2. File ref_dir
  3. File dbsnp_dir
  4. String sample
  5. String SENTIEON_INSTALL_DIR
  6. String tumor_name
  7. String normal_name
  8. String docker
  9. String cluster_config
  10. String fasta
  11. File corealigner_bam
  12. File corealigner_bam_index
  13. String dbsnp
  14. String disk_size
  15. File regions
  16. command <<<
  17. set -o pipefail
  18. set -e
  19. export SENTIEON_LICENSE=192.168.0.55:8990
  20. nt=$(nproc)
  21. ${SENTIEON_INSTALL_DIR}/bin/sentieon driver --interval ${regions} -r ${ref_dir}/${fasta} -t $nt -i ${corealigner_bam} --algo TNscope --tumor_sample ${tumor_name} --normal_sample ${normal_name} --dbsnp ${dbsnp_dir}/${dbsnp} ${sample}.TNscope.TN.vcf
  22. >>>
  23. runtime {
  24. docker:docker
  25. cluster: cluster_config
  26. systemDisk: "cloud_ssd 40"
  27. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  28. }
  29. output {
  30. File TNscope_vcf= "${sample}.TNscope.TN.vcf"
  31. File TNscope_vcf_index = "${sample}.TNscope.TN.vcf.idx"
  32. }
  33. }