This functions highlights feature values in a two-dimensional t-SNE map, UMAP, or a Fruchterman-Rheingold graph layout of the singe-cell transcriptome data.
plotfeatmap(
object,
g,
n = NULL,
logsc = FALSE,
fr = FALSE,
um = FALSE,
cells = NULL,
cex = 1,
map = TRUE,
leg = TRUE,
flo = NULL,
ceil = NULL
)
None
SCseq
class object.
Vector of real numbered features to highlight in the dimensional reduction representation, NAs will be highlighted in grey.
String of characters representing the title of the plot. Default is NULL
and the first element of g
is chosen.
logical. If TRUE
, then feature values are log2-transformed. Default is FALSE
.
and untransformed values are shown.
logical. If TRUE
then plot Fruchterman-Rheingold layout. Default is FALSE
.
logical. If TRUE
then plot umap dimensional reduction representation. Default is FALSE
.
Vector of valid cell names corresponding to column names of slot ndata
of the SCseq
object. Gene expression is ony shown for
this subset.
size of data points. Default value is 1.
logical. If TRUE
then data points are shown. Default value is TRUE
.
logical. If TRUE
then the legend is shown. Default value is TRUE
.
Numeric. Lower bound for feature values. All values smaller then flo
are replaced by flo
.
#' Default is NULL
and no fllo
is applied.
Numeric. Upper bound for feature values. All values larger then ceil
are replaced by ceil
.
Default is NULL
and no ceil
is applied.