This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Conversion of Vep.vcf to MAF format?

I have Vep.vcf files and I would like to convert it into MAF. But I do not want to execute VEP again, as required by vcf2maf. What are the other possibilities?

cancer vep maf snp genome

2 answers

While it is no more maintained, but try this: https://github.com/cbare/vcf2maf

not really, I have annotated vcf by VEP. not .vcf

Maybe you can use bcftools +split-vep and extract the variants in tabulated format with specific order of the fields.

I got my answer. It is possible with https://github.com/mskcc/vcf2maf/releases/tag/v1.1.0

but this is the same vcf2maf.pl which requires vep to run

I am trying, they wrote If you already annotated a VCF with either VEP or snpEff, you can use those directly:

perl vcf2maf.pl --input-vep test.vep.vcf --output-maf test.maf
perl vcf2maf.pl --input-snpeff test.snpeff.vcf --output-maf test.maf

Log in to answer this question.