Description Usage Arguments Details Value Examples
This function returns marker genes detected by CAM for estimating A.
1 2 |
CAMResult |
Result from |
K |
The candidate subpopulation number. |
PrepResult |
An object of class "CAMPrepObj" from |
MGResult |
An object of class "CAMMGObj" from
|
corner.strategy |
The method to detect corner clusters. 1: minimum sum of margin-of-errors; 2: minimum sum of reconstruction errors. The default is 2. |
This function needs to specify CAMResult and K, or PrepResult and
MGResult. The returned marker genes are those used by CAM for estimating A.
To obtain a more complete marker gene list, please refer to
MGstatistic
.
A list of vectors, each of which contains marker genes for one subpopulation.
1 2 3 4 5 6 7 8 9 10 11 12 | #obtain data and run CAM
data(ratMix3)
data <- ratMix3$X
rCAM <- CAM(data, K = 3, dim.rdc= 3, thres.low = 0.30, thres.high = 0.95)
#obtain marker genes detected by CAM for estimating A
MGlist <- MGsforA(rCAM, K = 3)
#obtain data and run CAM step by step
rPrep <- CAMPrep(data, dim.rdc= 3, thres.low = 0.30, thres.high = 0.95)
rMGC <- CAMMGCluster(3, rPrep)
#obtain marker genes detected by CAM for estimating A
MGlist <- MGsforA(PrepResult = rPrep, MGResult = rMGC)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.