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 1.4KB

4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. import "./tasks/in_out.wdl" as in_out
  2. import "./tasks/region.wdl" as region
  3. workflow {{ project_name }} {
  4. File vcf
  5. File vcf_idx
  6. File confidence_bed
  7. File satellite
  8. File simple_repeat
  9. File SINE
  10. File LINE
  11. File LTR
  12. File low_complexity
  13. File SD
  14. File ins_breakpoint
  15. File del_breakpoint
  16. File mhc
  17. String sample_name
  18. String docker
  19. String cluster_config
  20. String disk_size
  21. call in_out.in_out as in_out {
  22. input:
  23. vcf=vcf,
  24. vcf_idx=vcf_idx,
  25. confidence_bed=confidence_bed,
  26. sample_name=sample_name,
  27. docker=docker,
  28. cluster_config=cluster_config,
  29. disk_size=disk_size
  30. }
  31. call region.region as in_region {
  32. input:
  33. sub_vcf=in_out.in_vcf,
  34. sub_vcf_idx=in_out.in_vcf_idx,
  35. satellite=satellite,
  36. simple_repeat=simple_repeat,
  37. SINE=SINE,
  38. LINE=LINE,
  39. LTR=LTR,
  40. low_complexity=low_complexity,
  41. SD=SD,
  42. ins_breakpoint=ins_breakpoint,
  43. del_breakpoint=del_breakpoint,
  44. mhc=mhc,
  45. sample_name=sample_name,
  46. tag="inside",
  47. docker=docker,
  48. cluster_config=cluster_config,
  49. disk_size=disk_size
  50. }
  51. call region.region as out_region {
  52. input:
  53. sub_vcf=in_out.out_vcf,
  54. sub_vcf_idx=in_out.out_vcf_idx,
  55. satellite=satellite,
  56. simple_repeat=simple_repeat,
  57. SINE=SINE,
  58. LINE=LINE,
  59. LTR=LTR,
  60. low_complexity=low_complexity,
  61. SD=SD,
  62. ins_breakpoint=ins_breakpoint,
  63. del_breakpoint=del_breakpoint,
  64. mhc=mhc,
  65. sample_name=sample_name,
  66. tag="outside",
  67. docker=docker,
  68. cluster_config=cluster_config,
  69. disk_size=disk_size
  70. }
  71. }