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.
|
- task vcf2maf {
-
- File vcf
- String basename = basename(vcf,".vcf")
- String tumor_id
- String normal_id
- File ref_dir
- String fasta
- String vep_path
- File cache
- String ncbi_build
- String species
- String docker
- String cluster_config
- String disk_size
-
-
- command <<<
- set -o pipefail
- set -e
- nt=$(nproc)
- perl /opt/mskcc-vcf2maf/vcf2maf.pl \
- --input-vcf ${vcf} --output-maf ${basename}.maf \
- --tumor-id ${tumor_id} --normal-id ${normal_id} \
- --ref-fasta ${ref_dir}/${fasta} \
- --vep-path ${vep_path} \
- --vep-data ${cache} \
- --ncbi-build ${ncbi_build} \
- --species ${species} \
- --vep-fork $nt
- >>>
-
- runtime {
- docker: docker
- cluster: cluster_config
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- File vep_vcf = "${basename}.vep.vcf"
- File maf = "${basename}.maf"
- }
- }
|