VEP (Variant Effect Predictor) predicts the functional effects of genomic variants. The annotated VCF will be converted into MAF based on vcf2maf.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

workflow.wdl 598B

3 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
3 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
123456789101112131415161718192021222324252627282930313233
  1. import "./tasks/VEP.wdl" as VEP
  2. workflow {{ project_name }} {
  3. File vcf
  4. String sample_id
  5. File ref_dir
  6. String fasta
  7. String vep_path
  8. File cache
  9. String ncbi_build
  10. String species
  11. String vcf2maf_path
  12. String vep_docker
  13. String cluster_config
  14. String disk_size
  15. call VEP.VEP as VEP {
  16. input:
  17. vcf=vcf,
  18. sample_id=sample_id,
  19. ref_dir=ref_dir,
  20. fasta=fasta,
  21. vep_path=vep_path,
  22. cache=cache,
  23. ncbi_build=ncbi_build,
  24. species=species,
  25. vcf2maf_path=vcf2maf_path,
  26. docker=vep_docker,
  27. cluster_config=cluster_config,
  28. disk_size=disk_size
  29. }
  30. }