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

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