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

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1234567891011121314151617181920212223
  1. import "./tasks/annovar.wdl" as annovar
  2. workflow {{ project_name }} {
  3. File vcf_file
  4. File database
  5. File immune_txt
  6. String sample
  7. String docker
  8. String cluster_config
  9. String disk_size
  10. call annovar.annovar as annovar {
  11. input:
  12. vcf_file=vcf_file,
  13. database=database,
  14. immune_txt=immune_txt,
  15. sample=sample,
  16. docker=docker,
  17. cluster_config=cluster_config,
  18. disk_size=disk_size
  19. }
  20. }