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.

29 satır
527B

  1. import "./tasks/benchmark.wdl" as benchmark
  2. workflow {{ project_name }} {
  3. File vcf
  4. File benchmarking_dir
  5. File ref_dir
  6. File filtered_bed
  7. String sample
  8. String fasta
  9. String BENCHMARKdocker
  10. String BIGcluster_config
  11. String disk_size
  12. call benchmark.benchmark as benchmark {
  13. input:
  14. vcf=vcf,
  15. sample=sample,
  16. benchmarking_dir=benchmarking_dir,
  17. filtered_bed=filtered_bed,
  18. ref_dir=ref_dir,
  19. fasta=fasta,
  20. docker=BENCHMARKdocker,
  21. cluster_config=BIGcluster_config,
  22. disk_size=disk_size
  23. }
  24. }