Learn R Programming

g3viz (version 0.1.4)

mapMutationTypeToMutationClass: Map from mutation type (aka, variant classification) to mutation class

Description

Map from mutation type (aka, variant classification) to mutation class. Default mappings are as follows,

  • Missense

  • Inframe

    • In_Frame_Del --- deletion that keeps the sequence in frame

    • In_Frame_Ins --- insertion that keeps the sequence in frame

    • Silent --- variant is in coding region of the chosen transcript, but protein structure is identical (i.e., a synonymous mutation)

    • Targeted_Region --- targeted region

  • Truncating

  • Other

    • 5'UTR --- variant is on the 5'UTR for the chosen transcript

    • 3'UTR --- variant is on the 3'UTR for the chosen transcript

    • 5'Flank --- the variant is upstream of the chosen transcript (within 3kb)

    • 3'Flank --- the variant is downstream of the chosen transcript (within 3kb)

    • Fusion --- gene fusion

    • IGR --- intergenic region. Does not overlap any transcript.

    • Intron --- variant lies between exons within the bounds of the chosen transcript.

    • Translation_Start_Site --- variant in translation start site.

    • De_novo_Start_InFrame --- New start codon is created by the given variant using the chosen transcript. However, it is in frame relative to the coded protein.

    • De_novo_Start_OutOfFrame --- New start codon is created by the given variant using the chosen transcript. However, it is out of frame relative to the coded protein.

    • Start_Codon_SNP --- point mutation that overlaps the start codon.

    • Start_Codon_Ins --- insertion that overlaps the start codon.

    • Start_Codon_Del --- selection that overlaps the start codon.

    • RNA --- variant lies on one of the RNA transcripts.

    • lincRNA --- variant lies on one of the lincRNAs.

    • Unknown --- Unknown

Usage

mapMutationTypeToMutationClass(mutation.type.vec,
  mutation.type.to.class.df = NA)

Arguments

mutation.type.vec

a vector of mutation type information

mutation.type.to.class.df

A mapping table from mutation type (header Mutation_Type) to mutation class (header Mutation_Class). Default NA, which indicates to use default mappings.

Value

a vector of mapped mutation class information