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.

workflow.wdl 391B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
123456789101112131415161718192021
  1. import "./tasks/annovar.wdl" as annovar
  2. workflow {{ project_name }} {
  3. File vcf
  4. String hg
  5. File annovar_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. annovar_database=annovar_database,
  14. docker=annovar_docker,
  15. cluster_config=cluster_config,
  16. disk_size=disk_size
  17. }
  18. }