Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

24 linhas
433B

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