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.

workflow.wdl 292B

4 years ago
123456789101112131415161718
  1. import "./tasks/catreads.wdl" as catreads
  2. workflow {{ project_name }} {
  3. String disk_size
  4. File fq1
  5. File fq2
  6. String fq3
  7. String cluster_config
  8. call catreads.catreads as catreads {
  9. input:
  10. fq1=fq1,
  11. fq2=fq2,
  12. fq3=fq3,
  13. disk_size=disk_size,
  14. cluster_config=cluster_config
  15. }
  16. }