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.

24 satır
406B

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