From 836c0c33924f834c86345fc8f3b3c5c0873fcce0 Mon Sep 17 00:00:00 2001 From: pcastellanoescuder Date: Sun, 14 Jan 2024 10:18:01 -0500 Subject: [PATCH] molecular features boxplot docs --- DESCRIPTION | 2 +- R/plots.R | 2 +- man/make_molecular_features_boxplots.Rd | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index f706f57..90ab759 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: ddh Type: Package Title: Utility Functions and Data Sets for Data-driven Hypothesis -Version: 0.3.23 +Version: 0.3.24 Authors@R: c( person(given = "Matthew", family = "Hirschey", diff --git a/R/plots.R b/R/plots.R index 295b6e0..c801d77 100644 --- a/R/plots.R +++ b/R/plots.R @@ -2046,7 +2046,7 @@ make_molecular_features_pathways <- function(input = list(), ## MOLECULAR FEATURES BOXPLOT --------------------------------------------------- #' Molecular Features Boxplot #' -#' Gene expression boxplot for the genes associated with the query ablation. +#' Molecular features associated with the query ablation. #' #' @param input Expecting a list containing type and content variable. #' diff --git a/man/make_molecular_features_boxplots.Rd b/man/make_molecular_features_boxplots.Rd index 345a134..40a8103 100644 --- a/man/make_molecular_features_boxplots.Rd +++ b/man/make_molecular_features_boxplots.Rd @@ -19,8 +19,9 @@ make_molecular_features_boxplots( If no error, then returns a boxplot. If an error is thrown, then will return a bomb plot. } \description{ -Gene expression boxplot for the genes associated with the query ablation. +Molecular features associated with the query ablation. } \examples{ make_molecular_features_boxplots(input = list(type = 'gene', query = 'ROCK1', content = 'ROCK1')) +make_molecular_features_boxplots(input = list(type = 'gene', query = 'ROCK1', content = c('ROCK1', 'ROCK2'))) }