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

3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import "./tasks/fastqc.wdl" as fastqc
  2. import "./tasks/fastqscreen.wdl" as fastqscreen
  3. workflow {{ project_name }} {
  4. File read1
  5. File read2
  6. String FASTQCdocker
  7. String FASTQSCREENdocker
  8. String fasta
  9. File ref_dir
  10. File screen_ref_dir
  11. File fastq_screen_conf
  12. String sample_name
  13. String disk_size
  14. String BIGcluster_config
  15. call fastqc.fastqc as fastqc {
  16. input:
  17. read1=read1,
  18. read2=read2,
  19. docker=FASTQCdocker,
  20. cluster_config=BIGcluster_config,
  21. disk_size=disk_size
  22. }
  23. call fastqscreen.fastq_screen as fastqscreen {
  24. input:
  25. read1=read1,
  26. read2=read2,
  27. screen_ref_dir=screen_ref_dir,
  28. fastq_screen_conf=fastq_screen_conf,
  29. docker=FASTQSCREENdocker,
  30. cluster_config=BIGcluster_config,
  31. disk_size=disk_size
  32. }
  33. }