Generate the Panel of Normal files for TNseq and TNscope.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

40 Zeilen
822B

  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 regions
  13. File normal_recaled_bam
  14. File normal_recaled_bam_index
  15. String sentieon_docker
  16. String cluster_config
  17. String disk_size
  18. call PON.PON as PON {
  19. input:
  20. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  21. SENTIEON_LICENSE=SENTIEON_LICENSE,
  22. sample=sample_id,
  23. fasta=fasta,
  24. ref_dir=ref_dir,
  25. regions=regions,
  26. normal_recaled_bam=normal_recaled_bam,
  27. normal_recaled_bam_index=normal_recaled_bam_index,
  28. cosmic_vcf=cosmic_vcf,
  29. cosmic_dir=cosmic_dir,
  30. dbsnp=dbsnp,
  31. dbsnp_dir=dbsnp_dir,
  32. docker=sentieon_docker,
  33. disk_size=disk_size,
  34. cluster_config=cluster_config
  35. }
  36. }