View source: R/TopExpressionGenes.R
TopExpressionGenes | R Documentation |
Select genes residing in the top quantile according to the mean of their expression across the stages
TopExpressionGenes(ExpressionSet, p = 0.99)
ExpressionSet |
A standard ExpressionSet |
p |
The quantile probability. Default is |
a character vector containing the gene ids residing in the top expression quantile
Stefan Manolache
# reading a standard PhyloExpressionSet
data(PhyloExpressionSetExample)
# select genes with highest variance (top 2%)
genes.top_expression <- TopExpressionGenes(PhyloExpressionSetExample, p=.98)
# remove top genes from the PhyloExpressionSet
PhyloExpressionSet.top_removed <- subset(PhyloExpressionSetExample,
!(GeneID %in% genes.top_expression))
# plot TAI of set with removed quantile
PlotSignature(ExpressionSet = PhyloExpressionSet.top_removed,
measure = "TAI",
TestStatistic = "FlatLineTest",
xlab = "Ontogeny",
ylab = "TAI" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.