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.

38 lines
839B

  1. import "./tasks/pathseq.wdl" as pathseq
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File fastq1
  5. File fastq2
  6. String disk_size
  7. File host_image
  8. File host_kmer
  9. File microbe_dict
  10. File microbe_bwa_image
  11. File microbe_taxonomy
  12. String pathseq_docker
  13. String pathseq_cluster
  14. call pathseq.pathseq as pathseq {
  15. input:
  16. sample_id=sample_id,
  17. fastq1=fastq1,
  18. fastq2=fastq2,
  19. host_image=host_image,
  20. host_kmer=host_kmer,
  21. microbe_dict=microbe_dict,
  22. microbe_bwa_image=microbe_bwa_image,
  23. microbe_taxonomy=microbe_taxonomy,
  24. disk_size=disk_size,
  25. docker=pathseq_docker,
  26. cluster=pathseq_cluster
  27. }
  28. }