
Can anybody point me to a tool that can convert a vcf file to Mutation Annotation Format (MAF) file?
That will be great!
Thanks
-Kasthuri
You are currently viewing the SEQanswers forums as a guest, which limits your access. Click here to register now, and join the discussion
cat file.vcf | \
awk -F $'\t' 'BEGIN {OFS=FS} {print $1,$2,$2,$4,$5,"","hg19"}' | \
sed 's/,\([ACGT]\)\t/\t\1/g' | \
grep -v "#" | \
awk 'NR==1{print "Chromosome\tStart_Position\tEnd_Position\tReference_Allele\tTumor_Seq_Allele1\tTumor_Seq_Allele2\tNCBI_Build"}1' \
> file.maf
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, Today, 11:05 AM
|
0 responses
9 views
0 reactions
|
Last Post
by SEQadmin2
Today, 11:05 AM
|
||
|
Started by SEQadmin2, 09-18-2026, 11:37 AM
|
1 response
34 views
0 reactions
|
Last Post
by pekgio
09-21-2026, 02:04 AM
|
||
|
Started by SEQadmin2, 09-16-2026, 10:23 AM
|
1 response
49 views
0 reactions
|
Last Post
by pekgio
09-21-2026, 02:12 AM
|
||
|
Started by SEQadmin2, 09-09-2026, 12:14 PM
|
0 responses
70 views
0 reactions
|
Last Post
by SEQadmin2
09-09-2026, 12:14 PM
|
Comment