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 325B

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