Infer and visualize copy number from high-throughput DNA sequencing data.
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.

50 lines
943B

  1. import "./tasks/access.wdl" as access
  2. import "./tasks/batch.wdl" as batch
  3. import "./tasks/export.wdl" as export
  4. workflow {{ project_name }} {
  5. String sample_id
  6. File tumor_bam
  7. File tumor_bai
  8. File normal_bam
  9. File normal_bai
  10. String bed
  11. File ref_dir
  12. String fasta
  13. String docker
  14. String cluster
  15. String disk_size
  16. call access.access as access {
  17. input:
  18. fasta=fasta,
  19. ref_dir=ref_dir,
  20. docker = docker,
  21. cluster = cluster,
  22. disk_size = disk_size
  23. }
  24. call batch.batch as batch {
  25. input:
  26. sample_id = sample_id,
  27. fasta=fasta,
  28. ref_dir=ref_dir,
  29. tumor_bam = tumor_bam,
  30. tumor_bai = tumor_bai,
  31. normal_bam = normal_bam,
  32. normal_bai = normal_bai,
  33. bed = bed,
  34. access_bed = access.access_bed,
  35. docker = docker,
  36. cluster = cluster,
  37. disk_size = disk_size
  38. }
  39. call export.export as export {
  40. input:
  41. result = batch.result,
  42. docker = docker,
  43. cluster = cluster,
  44. disk_size = disk_size
  45. }
  46. }