Description Usage Arguments Value Author(s) Examples
View source: R/ggplot_heatmap.R
Heatmap of genes expression value categorized by classes
1 | ggplot_heatmap(input_data, threshold = FALSE, output_name = "Sample")
|
input_data |
A tibble, with four columns. First column name should be
|
threshold |
Logical, to set maximum limit of the color
key. |
output_name |
A character vector, containing name of the output
plot. |
heatmap of expression of given genes categorized by class and output image file of same.
pooja sethiya
1 2 3 4 5 6 7 8 | ## Not run:
dat <- readr::read_delim(system.file("extdata/genesets/an_spore_hypha_specificgenes.txt" , package = "FungalSporeAnalysis"), delim="\t", col_names = TRUE)
input_data <- dat %>% dplyr::filter(class=="spore_maturation")
ggplot_heatmap(input_data ,threshold = TRUE, output_name = "plots/An_spores_maturation_genes_exprsn")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.