Description Usage Arguments Details Value References See Also Examples
View source: R/inferTumHetero.R
takes output generated by read.maf and clusters variants to infer tumor heterogeneity. This function requires VAF for clustering and density estimation. VAF can be on the scale 0-1 or 0-100. Optionally if copy number information is available, it can be provided as a segmented file (e.g, from Circular Binary Segmentation). Those variants in copy number altered regions will be ignored.
1 2 3 4 5 6 7 8 9 10 11 12 |
maf |
an |
tsb |
specify sample names (Tumor_Sample_Barcodes) for which clustering has to be done. |
top |
if |
vafCol |
manually specify column name for vafs. Default looks for column 't_vaf' |
segFile |
path to CBS segmented copy number file. Column names should be Sample, Chromosome, Start, End, Num_Probes and Segment_Mean (log2 scale). |
ignChr |
ignore these chromosomes from analysis. e.g, sex chromsomes chrX, chrY. Default NULL. |
minVaf |
filter low frequency variants. Low vaf variants maybe due to sequencing error. Default 0. (on the scale of 0 to 1) |
maxVaf |
filter high frequency variants. High vaf variants maybe due to copy number alterations or impure tumor. Default 1. (on the scale of 0 to 1) |
useSyn |
Use synonymous variants. Default FALSE. |
dirichlet |
Deprecated! No longer supported. uses nonparametric dirichlet process for clustering. Default FALSE - uses finite mixture models. |
This function clusters variants based on VAF to estimate univariate density and cluster classification. There are two methods available for clustering. Default using parametric finite mixture models and another method using nonparametric inifinite mixture models (Dirichlet process).
list of clustering tables.
Chris Fraley and Adrian E. Raftery (2002) Model-based Clustering, Discriminant Analysis and Density Estimation Journal of the American Statistical Association 97:611-631
Jara A, Hanson TE, Quintana FA, Muller P, Rosner GL. DPpackage: Bayesian Semi- and Nonparametric Modeling in R. Journal of statistical software. 2011;40(5):1-30.
Olshen AB, Venkatraman ES, Lucito R, Wigler M. Circular binary segmentation for the analysis of array-based DNA copy number data. Biostatistics. 2004;5(4):557-72.
1 2 3 4 5 6 | ## Not run:
laml.maf <- system.file("extdata", "tcga_laml.maf.gz", package = "maftools")
laml <- read.maf(maf = laml.maf)
TCGA.AB.2972.clust <- inferHeterogeneity(maf = laml, tsb = 'TCGA-AB-2972', vafCol = 'i_TumorVAF_WU')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.