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.

30 lines
675B

  1. import "./tasks/spladder_quantification.wdl" as spladder_quantification
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File bam
  5. File pickle
  6. File merge_graphs
  7. File count_hdf5
  8. File reference_gtf_file
  9. File samples
  10. String spladder_docker
  11. String spladder_cluster
  12. String disk_size
  13. call spladder_quantification.spladder_quantification as spladder_quantification {
  14. input:
  15. reference_gtf_file=reference_gtf_file,
  16. sample_id=sample_id,
  17. bam=bam,
  18. pickle=pickle,
  19. merge_graphs=merge_graphs,
  20. count_hdf5=count_hdf5,
  21. samples=samples,
  22. spladder_docker=spladder_docker,
  23. spladder_cluster=spladder_cluster,
  24. disk_size=disk_size
  25. }
  26. }