Generate the Panel of Normal files for TNseq and TNscope.
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.

38 líneas
789B

  1. import "./tasks/PON.wdl" as PON
  2. workflow {{ project_name }} {
  3. String SENTIEON_INSTALL_DIR
  4. String SENTIEON_LICENSE
  5. String sample_id
  6. File ref_dir
  7. String fasta
  8. File cosmic_dir
  9. String cosmic_vcf
  10. File dbsnp_dir
  11. String dbsnp
  12. File normal_recaled_bam
  13. File normal_recaled_bam_index
  14. String sentieon_docker
  15. String cluster_config
  16. String disk_size
  17. call PON.PON as PON {
  18. input:
  19. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  20. SENTIEON_LICENSE=SENTIEON_LICENSE,
  21. sample=sample_id,
  22. fasta=fasta,
  23. ref_dir=ref_dir,
  24. normal_recaled_bam=normal_recaled_bam,
  25. normal_recaled_bam_index=normal_recaled_bam_index,
  26. cosmic_vcf=cosmic_vcf,
  27. cosmic_dir=cosmic_dir,
  28. dbsnp=dbsnp,
  29. dbsnp_dir=dbsnp_dir,
  30. docker=sentieon_docker,
  31. disk_size=disk_size,
  32. cluster_config=cluster_config
  33. }
  34. }