Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

workflow.wdl 436B

il y a 5 ans
il y a 4 ans
il y a 5 ans
il y a 4 ans
il y a 5 ans
il y a 4 ans
il y a 5 ans
il y a 4 ans
il y a 5 ans
il y a 4 ans
il y a 5 ans
12345678910111213141516171819202122232425
  1. import "./tasks/benchmark.wdl" as benchmark
  2. workflow {{ project_name }} {
  3. File vcf
  4. File vcf_idx
  5. File benchmarking_dir
  6. File ref_dir
  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. vcf_idx=vcf_idx,
  15. benchmarking_dir=benchmarking_dir,
  16. ref_dir=ref_dir,
  17. fasta=fasta,
  18. docker=docker,
  19. cluster_config=cluster_config,
  20. disk_size=disk_size
  21. }
  22. }