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

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