No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

workflow.wdl 1.2KB

hace 4 años
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. import "./tasks/TNseq.wdl" as TNseq
  2. import "./tasks/TNscope.wdl" as TNscope
  3. workflow {{ project_name }} {
  4. File corealigner_bam
  5. File corealigner_bam_index
  6. String SENTIEON_INSTALL_DIR
  7. String SENTIEON_LICENSE
  8. String sample
  9. String SENTIEONdocker
  10. String fasta
  11. File ref_dir
  12. File dbmills_dir
  13. String db_mills
  14. File dbsnp_dir
  15. String dbsnp
  16. String disk_size
  17. String cluster_config
  18. call TNseq.TNseq as TNseq {
  19. input:
  20. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  21. SENTIEON_LICENSE=SENTIEON_LICENSE,
  22. fasta=fasta,
  23. ref_dir=ref_dir,
  24. corealigner_bam=corealigner_bam,
  25. corealigner_bam_index=corealigner_bam_index,
  26. dbsnp=dbsnp,
  27. dbsnp_dir=dbsnp_dir,
  28. tumor_name=sample + "tumor",
  29. normal_name=sample + "normal",
  30. docker=SENTIEONdocker,
  31. sample=sample,
  32. disk_size=disk_size,
  33. cluster_config=cluster_config
  34. }
  35. call TNscope.TNscope as TNscope {
  36. input:
  37. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  38. SENTIEON_LICENSE=SENTIEON_LICENSE,
  39. fasta=fasta,
  40. ref_dir=ref_dir,
  41. corealigner_bam=corealigner_bam,
  42. corealigner_bam_index=corealigner_bam_index,
  43. dbsnp=dbsnp,
  44. dbsnp_dir=dbsnp_dir,
  45. tumor_name=sample + "tumor",
  46. normal_name=sample + "normal",
  47. docker=SENTIEONdocker,
  48. sample=sample,
  49. disk_size=disk_size,
  50. cluster_config=cluster_config
  51. }
  52. }