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.

19 lignes
334B

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