Plots a heatmap of genes expression in human embryonic stem cells, using RNAseq data downloaded from Encode database.
Usage
hESC_expression(
genes = NULL,
include_CTP = FALSE,
units = c("TPM"),
scale_lims = NULL,
values_only = FALSE
)Arguments
- genes
characternaming the selected genes. The default value,NULL, takes all CT (specific) genes.- include_CTP
logical(1)IfTRUE, CTP genes are included. (FALSEby default).- units
character(1)with expression values unit. Can be"TPM"(default) or"log_TPM"(log(TPM + 1)).- scale_lims
vector of length 2setting the lower and upper limits of the heatmap colorbar. By default, the lower limit is 0, and the upper limit corresponds to the third quartile of the logcounts values.- values_only
logical(1). IfTRUE, the function will return the SingleCellExperiment instead of the heatmap. Default isFALSE.