Description Usage Arguments Details Value Examples
Upon identifying a bicluster seed with FindSeed
, one of the next
steps is to identify which genes not in your chosen gene set are also
highly correlated to the bicluster found. This is done by CVEval
,
and the output is known as the correlation vector.
1 | CVEval(gem.part, gem.all, seed, splits)
|
gem.part |
Part of gene expression matrix only containing gene set of interest with genes as rows and samples as columns |
gem.all |
All of gene expression matrix |
seed |
Seed of highly correlating samples |
splits |
Number of cuts from hierarchical clustering |
CVeval
uses hierarchical clustering to select the genes most
representative of the bicluster and then uses the average expression of
these genes across the sample seed and calculates the correlation of
every gene measured across the sample seed to this average expression value.
The correlation vector is the output of this calculation.
Correlation vector
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | data(CCLE_small)
data(Mitochondrial_genes)
mito.loc <- (row.names(CCLE_small) %in% Mitochondrial_genes)
CCLE.mito <- CCLE_small[mito.loc,]
set.seed(102)
CCLE.seed <- FindSeed(gem = CCLE.mito,
seed.size = 10,
iterations = 100,
messages = 1000)
CCLE.sort <- SampleSort(gem = CCLE.mito,seed = CCLE.seed,sort.length = 11)
# Full ordering are in Vignette_sort in sysdata.rda
CCLE.samp.sort <- MCbiclust:::Vignette_sort[[1]]
CCLE.pc1 <- PC1VecFun(top.gem = CCLE.mito,
seed.sort = CCLE.samp.sort,
n = 10)
CCLE.cor.vec <- CVEval(gem.part = CCLE.mito,
gem.all = CCLE_small,
seed = CCLE.seed,
splits = 10)
CCLE.bic <- ThresholdBic(cor.vec = CCLE.cor.vec,sort.order = CCLE.samp.sort,
pc1 = as.numeric(CCLE.pc1))
CCLE.pc1 <- PC1Align(gem = CCLE_small, pc1 = CCLE.pc1,
cor.vec = CCLE.cor.vec ,
sort.order = CCLE.samp.sort,
bic =CCLE.bic)
CCLE.fork <- ForkClassifier(CCLE.pc1, samp.num = length(CCLE.bic[[2]]))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.