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 522B

3 years ago
1234567891011121314151617181920212223242526272829303132
  1. import "./tasks/HC.wdl" as HC
  2. workflow project_name {
  3. File ref_dir
  4. File dbsnp_dir
  5. String SENTIEON_INSTALL_DIR
  6. String fasta
  7. File bam
  8. File bam_index
  9. String dbsnp
  10. String sample
  11. String docker
  12. String cluster_config
  13. String disk_size
  14. call HC.HC as HC {
  15. input:
  16. ref_dir=ref_dir,
  17. dbsnp_dir=dbsnp_dir,
  18. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  19. fasta=fasta,
  20. bam=bam,
  21. bam_index=bam_index,
  22. dbsnp=dbsnp,
  23. sample=sample,
  24. docker=docker,
  25. disk_size=disk_size,
  26. cluster_config=cluster_config
  27. }
  28. }