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.

3 年之前
3 年之前
123456789101112131415161718192021222324
  1. import "./tasks/spladder_single.wdl" as spladder_single
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File bam
  5. File bai
  6. File reference_gtf_file
  7. String spladder_docker
  8. String spladder_cluster
  9. String disk_size
  10. call spladder_single.spladder_single as spladder_single {
  11. input:
  12. reference_gtf_file=reference_gtf_file,
  13. sample_id=sample_id,
  14. bam=bam,
  15. bai=bai,
  16. docker=spladder_docker,
  17. cluster=spladder_cluster,
  18. disk_size=disk_size
  19. }
  20. }