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.

41 líneas
720B

  1. import "./tasks/VQSR.wdl" as VQSR
  2. workflow {{ project_name }} {
  3. String SENTIEON_INSTALL_DIR
  4. String fasta
  5. File vcf
  6. File vcf_index
  7. File ref_dir
  8. String dbsnp
  9. String dbsnp_Mill
  10. String dbsnp_1000G_omni
  11. String dbsnp_hapmap
  12. String dbsnp_1000G_phase1
  13. String sample
  14. String docker
  15. String cluster_config
  16. String disk_size
  17. call VQSR.VQSR as VQSR {
  18. input:
  19. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  20. fasta=fasta,
  21. vcf=vcf,
  22. vcf_index=vcf_index,
  23. ref_dir=ref_dir,
  24. dbsnp=dbsnp,
  25. dbsnp_Mill=dbsnp_Mill,
  26. dbsnp_1000G_omni=dbsnp_1000G_omni,
  27. dbsnp_hapmap=dbsnp_hapmap,
  28. dbsnp_1000G_phase1=dbsnp_1000G_phase1,
  29. sample=sample,
  30. docker=docker,
  31. cluster_config=cluster_config,
  32. disk_size=disk_size
  33. }
  34. }