| DEVarSelect | R Documentation | 
This function selects cross-cell type differential features for reference-free deconvolution.
DEVarSelect(Y_raw, Prop0, nMarker, bound_negative)
Y_raw | 
 A data matrix containing P features and N samples; or a SummarizedExperiment object.  | 
Prop0 | 
 A N by K proportion matrix with K as number of cell types.  | 
nMarker | 
 Number of markers selected.  | 
bound_negative | 
 Whether to bound all negative parameter estimators to zero.  | 
Selected markers using cross-cell type differential analysis.
Ziyi Li <zli16@mdanderson.org>
Ziyi Li, Zhijin Wu, Peng Jin, Hao Wu. "Dissecting differential signals in high-throughput data from complex tissues."
Y_raw <- matrix(runif(5000*20, 0, 1), 5000, 20)
tmp <- matrix(runif(20*4), 20, 4)
Prop0 <- sweep(tmp, 1, rowSums(tmp), "/")
varlist <- DEVarSelect(Y_raw, Prop0,
                       nMarker=1000,
                       bound_negative=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.