How to get vafCol converting annovar outputs to maf object
1
0
Entering edit mode
2.6 years ago
MS ▴ 30

Hi,

I am trying to find heterogeneity in tumor samples using maftools.

I have annovar outputs and converted them to maf object using annovarToMaf function.

var.annovar = system.file("extdata", "variants.hg19_multianno.txt", package = "maftools")
var.annovar.maf = annovarToMaf(annovar = var.annovar, Center = 'CSI-NUS', refBuild = 'hg19', 
                               tsbCol = 'Tumor_Sample_Barcode', table = 'ensGene')

Then I am reading maf file with readmaf:

laml.maf <- read.maf(maf = var.annovar.maf)

When I tried inferHeterogeneity function it could not find vafcol. I also used system file example for annovartomaf but it gives same error.

So there could be additional step after converting annovar files to maf object before inferHeterogeneity function?
Thanks.

maf.het <- inferHeterogeneity(maf = laml)

laml.maf

An object of class  MAF 
                  ID summary  Mean Median
1:        NCBI_Build      NA    NA     NA
2:            Center      NA    NA     NA
3:           Samples       7    NA     NA
4:            nGenes       2    NA     NA
5:   Frame_Shift_Del       1 0.143      0
6: Missense_Mutation       3 0.429      0
7:             total       4 0.571   1
inferHeterogeneity maftools annovarToMaf • 796 views
ADD COMMENT
0
Entering edit mode
2.1 years ago
Getting there ▴ 120

You need to tell inferHetrogeneity what the vaf column is called, using vafCol = 'column name' if it is not a default name. Ie

inferHeterogeneity(laml, vafCol = 'column name')
ADD COMMENT

Login before adding your answer.

Traffic: 2543 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6