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.

26 lines
446B

  1. import "./tasks/cn_mops.wdl" as CNV
  2. workflow {{project_name}} {
  3. String TumorBam
  4. String NormalBam
  5. String TumorSampleID
  6. String bed_file
  7. String workDir
  8. String docker
  9. String disk_size
  10. String cluster_config
  11. call CNV.CNV as CNV {
  12. input:
  13. TumorBam=TumorBam,
  14. NormalBam=NormalBam,
  15. TumorSampleID=TumorSampleID,
  16. bed_file=bed_file,
  17. workDir=workDir,
  18. docker=docker,
  19. disk_size=disk_size,
  20. cluster_config=cluster_config
  21. }
  22. }