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.

49 líneas
899B

  1. import "./tasks/delly.wdl" as delly
  2. import "./tasks/bcf2vcf.wdl" as bcf2vcf
  3. workflow {{ project_name }} {
  4. String SENTIEON_INSTALL_DIR
  5. String SENTIEONdocker
  6. String DELLYdocker
  7. String BCFdocker
  8. File tumor_bam
  9. File tumor_bam_idx
  10. File normal_bam
  11. File normal_bam_idx
  12. File ref_dir
  13. String fasta
  14. String sample_name
  15. String disk_size
  16. String BIGcluster_config
  17. String SMALLcluster_config
  18. call delly.delly as delly {
  19. input:
  20. tumor_bam=tumor_bam,
  21. tumor_bam_idx=tumor_bam_idx,
  22. normal_bam=normal_bam,
  23. normal_bam_idx=normal_bam_idx,
  24. ref_dir=ref_dir,
  25. fasta=fasta,
  26. sample_name=sample_name,
  27. docker=DELLYdocker,
  28. disk_size=disk_size,
  29. cluster_config=SMALLcluster_config
  30. }
  31. call bcf2vcf.bcf2vcf as bcf2vcf {
  32. input:
  33. bcf=delly.bcf,
  34. bcf_index=delly.bcf_index,
  35. docker=BCFdocker,
  36. disk_size=disk_size,
  37. cluster_config=SMALLcluster_config,
  38. sample_name=sample_name
  39. }
  40. }