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.

27 line
608B

  1. import "./tasks/trec.wdl" as trec
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File tumorBAM
  5. File tumorBAM_bai
  6. String TRA_cn
  7. String tumor_purity
  8. String trec_docker
  9. String trec_cluster
  10. String disk_size
  11. call trec.trec as trec {
  12. input:
  13. sample_id=sample_id,
  14. tumorBAM=tumorBAM,
  15. tumorBAM_bai=tumorBAM_bai,
  16. TRA_cn=TRA_cn,
  17. tumor_purity=tumor_purity,
  18. docker=trec_docker,
  19. cluster=trec_cluster,
  20. disk_size=disk_size
  21. }
  22. }