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

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