A tool for multi-genome mapping and quality control.
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.

21 lines
398B

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