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.

58 lines
1.1KB

  1. import "./tasks/AnnotSV.wdl" as AnnotSV
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File? tumor_bam
  5. File? tumor_bam_index
  6. File? normal_bam
  7. File? normal_bam_index
  8. String? duplex_umi
  9. String? read_structure
  10. File somatic_vcf
  11. File? germline_vcf
  12. String SENTIEON_LICENSE
  13. String sentieon_docker
  14. String manta_docker
  15. String bcftools_docker
  16. String annovar_docker
  17. String annotsv_docker
  18. String cnvkit_docker
  19. String sequenza_docker
  20. String msisensor_docker
  21. String tmb_docker
  22. String platform
  23. File ref_dir
  24. String fasta
  25. File dbmills_dir
  26. String db_mills
  27. File dbsnp_dir
  28. String dbsnp
  29. File germline_resource
  30. File germline_resource_tbi
  31. File annovar_database
  32. File annotsv_database
  33. File gc
  34. File baseline
  35. File ref_flat
  36. File? regions
  37. Int? interval_padding
  38. String disk_size
  39. String cluster_config
  40. call AnnotSV.AnnotSV as Manta_AnnotSV {
  41. input:
  42. sample=sample_id,
  43. somatic_vcf=somatic_vcf,
  44. germline_vcf=germline_vcf,
  45. annotsv_database=annotsv_database,
  46. docker=annotsv_docker,
  47. cluster_config=cluster_config,
  48. disk_size=disk_size
  49. }
  50. }