Annotation of genetic variants detected from human genome hg19 and hg38.
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.

21 lignes
347B

  1. import "./tasks/annovar.wdl" as annovar
  2. workflow {{ project_name }} {
  3. File vcf
  4. String hg
  5. File database
  6. String annovar_docker
  7. String disk_size
  8. String cluster_config
  9. call annovar.annovar as annovar {
  10. input:
  11. vcf=vcf,
  12. hg=hg,
  13. database=database,
  14. docker=annovar_docker,
  15. cluster_config=cluster_config,
  16. disk_size=disk_size
  17. }
  18. }