VEP (Variant Effect Predictor) predicts the functional effects of genomic variants. The annotated VCF will be converted into MAF based on vcf2maf.
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.
|
- 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"
- }
- }
|