Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

33 lignes
801B

  1. import "./tasks/stralka.wdl" as stralka
  2. workflow {{ project_name }} {
  3. File tumour_bam
  4. File tumour_bam_bai
  5. File normal_bam
  6. File normal_bam_bai
  7. String ref_fasta
  8. File ref_dir
  9. String sample_id
  10. File? manta_indel_vcf
  11. File? manta_indel_vcf_index
  12. # excute env
  13. String docker_stralka
  14. String cluster_config
  15. String disk_size
  16. call stralka.strelka_calling as stralka{
  17. input:
  18. tumour_bam=tumour_bam,
  19. tumour_bam_bai=tumour_bam_bai,
  20. normal_bam=normal_bam,
  21. normal_bam_bai=normal_bam_bai,
  22. ref_fasta=ref_fasta,
  23. ref_dir=ref_dir,
  24. sample_id=sample_id,
  25. docker=docker_stralka,
  26. cluster_config=cluster_config,
  27. disk_size=disk_size
  28. }
  29. }