VEP (Variant Effect Predictor) predicts the functional effects of genomic variants. The annotated VCF will be converted into MAF based on vcf2maf.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

workflow.wdl 670B

hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
123456789101112131415161718192021222324252627282930313233343536
  1. import "./tasks/vcf2maf.wdl" as vcf2maf
  2. workflow {{ project_name }} {
  3. File vcf
  4. String sample_id
  5. String tumor_id
  6. String normal_id
  7. File ref_dir
  8. String fasta
  9. String vep_path
  10. File cache
  11. String ncbi_build
  12. String species
  13. Boolean only_pass
  14. String vep_docker
  15. String cluster_config
  16. String disk_size
  17. call vcf2maf.vcf2maf as vcf2maf {
  18. input:
  19. vcf=vcf,
  20. tumor_id=tumor_id,
  21. normal_id=normal_id,
  22. ref_dir=ref_dir,
  23. fasta=fasta,
  24. vep_path=vep_path,
  25. cache=cache,
  26. ncbi_build=ncbi_build,
  27. species=species,
  28. only_pass=only_pass,
  29. docker=vep_docker,
  30. cluster_config=cluster_config,
  31. disk_size=disk_size
  32. }
  33. }