plotPairwiseDEGHeatmap | R Documentation |
Create heatmap for pairwise DEG analysis result
plotPairwiseDEGHeatmap(
object,
result,
group = NULL,
topN = 20,
absLFCThresh = 1,
padjThresh = 0.05,
pctInThresh = 50,
pctOutThresh = 50,
downsampleSize = 200,
useCellMeta = NULL,
column_title = NULL,
seed = 1,
...
)
object |
A liger object, with normalized data and metadata to annotate available. |
result |
The data.frame returned by |
group |
The test group name among the result to be shown. Must specify
only one if multiple tests are available (i.e. split test). Default
|
topN |
Maximum number of top significant features to be plot for up- and
down-regulated genes. Default |
absLFCThresh |
Hard threshold on absolute logFC value. Default |
padjThresh |
Hard threshold on adjusted P-value. Default |
pctInThresh , pctOutThresh |
Threshold on expression percentage. These
mean that a feature will only pass the filter if it is expressed in more than
|
downsampleSize |
Maximum number of downsampled cells to be shown in the
heatmap. The downsampling is balanced on the cells involved in the test
specified. Default |
useCellMeta |
Cell metadata variable names for cell grouping. Default
|
column_title |
Title on the column. Default |
seed |
Random seed for reproducibility. Default |
... |
Arguments passed on to
|
A HeatmapList-class object.
defaultCluster(pbmc) <- pbmcPlot$leiden_cluster
pbmc <- normalize(pbmc)
plotPairwiseDEGHeatmap(pbmc, deg.pw, '4.stim')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.