Description Usage Arguments Details Value Examples
Converts ICGC Simple Somatic Mutation format file to Mutation Annotation Format. Basic fields are converted as per MAF specififcations, rest of the fields are retained as in the input file. Ensemble gene IDs are converted to HGNC Symbols. Note that by default Simple Somatic Mutation format contains all affected transcripts of a variant resuting in multiple entries of the same variant in same sample. It is hard to choose a single affected transcript based on annotations alone and by default this program removes repeated variants as duplicated entries. If you wish to keep all of them, set removeDuplicatedVariants to FALSE.
1 2 3 4 5 6 7 8 |
icgc |
Input data in ICGC Simple Somatic Mutation format. Can be gz compressed. |
basename |
If given writes to output file with basename. |
MAFobj |
If TRUE returns results as an |
clinicalData |
Clinical data associated with each sample/Tumor_Sample_Barcode in MAF. Could be a text file or a data.frame. Default NULL. |
removeDuplicatedVariants |
removes repeated variants in a particuar sample, mapped to multiple transcripts of same Gene. See Description. Default TRUE. |
addHugoSymbol |
If TRUE replaces ensemble gene IDs with Hugo_Symbols. Default FALSE. |
ICGC Simple Somatic Mutattion format specififcation can be found here: http://docs.icgc.org/submission/guide/icgc-simple-somatic-mutation-format/
tab delimited MAF file.
1 2 | esca.icgc <- system.file("extdata", "simple_somatic_mutation.open.ESCA-CN.sample.tsv.gz", package = "maftools")
esca.maf <- icgcSimpleMutationToMAF(icgc = esca.icgc)
|
--Removed 427 duplicated variants
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.