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.

22 lines
383B

  1. import "./tasks/DownSample.wdl" as DownSample
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File fastq
  5. Int n
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. call DownSample.DownSample as DownSample {
  10. input:
  11. sample_id=sample_id,
  12. fastq=fastq,
  13. n=n,
  14. docker=docker,
  15. cluster_config=cluster_config,
  16. disk_size=disk_size
  17. }
  18. }