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.

28 line
488B

  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 outputDir
  9. String docker
  10. String disk_size
  11. String cluster_config
  12. call CNV.CNV as CNV {
  13. input:
  14. TumorBam=TumorBam,
  15. NormalBam=NormalBam,
  16. TumorSampleID=TumorSampleID,
  17. bed_file=bed_file,
  18. workDir=workDir,
  19. outputDir=outputDir,
  20. docker=docker,
  21. disk_size=disk_size,
  22. cluster_config=cluster_config
  23. }
  24. }