VEP (Variant Effect Predictor) predicts the functional effects of genomic variants. The annotated VCF will be converted into MAF based on vcf2maf.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

workflow.wdl 610B

4年前
12345678910111213141516171819202122232425262728293031323334
  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. String vep_docker
  14. String cluster_config
  15. String disk_size
  16. call vcf2maf.vcf2maf as vcf2maf {
  17. input:
  18. vcf=vcf,
  19. tumor_id=tumor_id,
  20. normal_id=normal_id,
  21. ref_dir=ref_dir,
  22. fasta=fasta,
  23. vep_path=vep_path,
  24. cache=cache,
  25. ncbi_build=ncbi_build,
  26. species=species,
  27. docker=vep_docker,
  28. cluster_config=cluster_config,
  29. disk_size=disk_size
  30. }
  31. }