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

38 lignes
789B

  1. import "./tasks/PON.wdl" as PON
  2. String SENTIEON_INSTALL_DIR
  3. String SENTIEON_LICENSE
  4. String sample_id
  5. File ref_dir
  6. String fasta
  7. File cosmic_dir
  8. String cosmic_vcf
  9. File dbsnp_dir
  10. String dbsnp
  11. File normal_recaled_bam
  12. File normal_recaled_bam_index
  13. String sentieon_docker
  14. String cluster_config
  15. String disk_size
  16. workflow {{ project_name }} {
  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. }