Skip to content

Commit 042b0f3

Browse files
committed
directory param in highlight_entities
1 parent 40e161c commit 042b0f3

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

R/highlight_functions.R

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#' @param use_cache use cache or not
2222
#' @param return_graph return tbl_graph instead of plot
2323
#' @param remove_dot remove the "..." in the graphics name column
24+
#' @param directory directroy with XML files. ignore caching when specified.
2425
#' @return overlaid map
2526
#' @examples
2627
#' highlight_entities("hsa04110", c("CDKN2A"), legend_name="interesting")
@@ -29,8 +30,8 @@
2930
highlight_entities <- function(pathway, set, how="any",
3031
num_combine=mean, name="graphics_name", sep=", ", no_sep=FALSE,
3132
show_type="gene", fill_color="tomato", remove_dot=TRUE,
32-
legend_name=NULL, use_cache=FALSE, return_graph=FALSE) {
33-
graph <- pathway(pathway, use_cache=use_cache)
33+
legend_name=NULL, use_cache=FALSE, return_graph=FALSE, directory=NULL) {
34+
graph <- pathway(pathway, use_cache=use_cache, directory=directory)
3435
x <- get.vertex.attribute(graph, name)
3536

3637
if (is.null(names(set))) {## Discrete

man/highlight_entities.Rd

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)