Description Usage Arguments Value Examples
This package implements methods for estimate cell type proportion in bulk tissue gene expression data.
1 | estimate.proportion <- function(data, lambda = 0.75)
|
data |
input gene expression matrix. MGI gene symbol should be as their row names |
lambda |
threshold of mean correlation to define rank-1 co-expression module |
An object of class is also invisibly returned. This is a list containing the following components:
Stat_all |
statistics for all rank-1 co-expression module. |
module_keep |
modules with the high overlap number with core marker list for each cell type |
proportion |
estimated proportion for each cell type |
1 2 3 4 5 6 7 8 9 | # Simulate gene expression data for 1000 probes and 6 microarrays.
# Samples are in two groups
# First 50 probes are differentially expressed in second group
# candidate marker list and core markers we found in traing step
load('IM_markers_20190302_mouse.RData')
load('Mouse_selected_core_markers.RData')
# load your own gene expression data
load('example_bulk.RData')
aaa=estimate.proportion(data,lambda = 0.8)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.