Open ChristianRohde opened 9 months ago
Hi,
finally I used vcf2maf with --retain-fmt NR,NV parameter. This gave me t_NR, t_NV in my exported MAF files.
Next I read in the files in R using maftools::read.maf(local_MAF_file) and combined all files one after the other with maftools::merge_mafs(). Afterwards I exported this file using maftools::write.mafSummary() and loaded with data.table::fread(). Here I could rename the cols t_NR, t_NV to t_depth, t_alt_count. From these values I can easily calculate VAF and t_ref_count. Finally I can read this table to MAF format using maftools::read.maf(table).
It sounds a bit complicated but works well.
Thank you, Christian
Hi,
I have a kind of similar issue as in https://github.com/mskcc/vcf2maf/issues/332. I noticed this problem earlier and fixed the non matching names with previous data.
Now I have the problem that it seems that VCF2maf does not handle VCF files with the format GT:GL:GOF:GQ:NR:NV
Here I need to point out that I retrieved VCFv4.0 files from a colleague including a very rich annotation. Therefore I am running vcf2maf with --inhibit-vep parameter and hope that it will pick up data from my file. This is the format explanation from my VCF file:
Here is my first line and first entry:
In case https://github.com/mskcc/vcf2maf/issues/332 you mention that vcf2maf needs the AD field. Can I somehow tweak the parameter vcf2maf uses to solve the problem my current VCF files? Unfortunately I did not spot any parameter like this in the help. But this should be possible, right?
Best, Christian