Generate the Panel of Normal files for TNseq and TNscope.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflow.wdl 785B

4 anni fa
1234567891011121314151617181920212223242526272829303132333435363738
  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=BQSR.recaled_bam,
  25. normal_recaled_bam_index=BQSR.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. }