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.

19 lines
378B

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