Skip to content

No non-synonymous mutations found Check vc_nonSyn argumet in read.maf` for details #838

@guohout

Description

@guohout
library(TCGAbiolinks) 
query_SNV <- GDCquery(project = "TCGA-LIHC", 
                      data.category = "Simple Nucleotide Variation", 
                      data.type = "Masked Somatic Mutation", 
                      workflow.type = "Aliquot Ensemble Somatic Variant Merging and Masking") 
GDCdownload(query_SNV) 
mafFilePath2 = dir(path = "GDCdata/TCGA-LIHC",pattern = "masked.maf.gz$",full.names = T,recursive=T) 
library(maftools)
mafdata2 <- lapply(mafFilePath2, function(x) {read.maf(x,isTCGA = T)}) 
snv_data2 = merge_mafs(mafdata2)

1654259683(1)
1654259768(1)
Why this error occurred, thank you for your answer.

Activity

PoisonAlien

PoisonAlien commented on Jun 4, 2022

@PoisonAlien
Owner

Hi,
I couldn't figure out the issue. But try the below workaround..

library(TCGAbiolinks) 
query_SNV <- GDCquery(project = "TCGA-LIHC", 
                      data.category = "Simple Nucleotide Variation", 
                      data.type = "Masked Somatic Mutation", 
                      workflow.type = "Aliquot Ensemble Somatic Variant Merging and Masking") 
GDCdownload(query_SNV) 
mafFilePath2 = dir(path = "GDCdata/TCGA-LIHC",pattern = "masked.maf.gz$",full.names = T,recursive=T) 

library(maftools)
x = lapply(mafFilePath2, data.table::fread, skip = "Hugo_Symbol")
x = data.table::rbindlist(l = x, use.names = TRUE, fill = TRUE)
xm = maftools::read.maf(maf = x)

Hope this helps.

li910493462

li910493462 commented on Sep 20, 2022

@li910493462

i have the same error,please help me,thank you

github-actions

github-actions commented on Aug 18, 2023

@github-actions

This issue is stale because it has been open for 60 days with no activity.

github-actions

github-actions commented on Sep 1, 2023

@github-actions

This issue was closed because it has been inactive for 14 days since being marked as stale.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @PoisonAlien@guohout@li910493462

        Issue actions

          No non-synonymous mutations found Check `vc_nonSyn`` argumet in `read.maf` for details · Issue #838 · PoisonAlien/maftools