Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cparsania committed Oct 22, 2024
1 parent 97bce02 commit b455d80
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
7 changes: 4 additions & 3 deletions R/chip_related.R
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ import_topn_bed_features <- function(bed_feature_file,topn = 5000, center = TRUE
#' @param heatmap_axis_name_rot internally passed to \code{axis_name_rot} argument of [EnrichedHeatmap::EnrichedHeatmap()].
#' @param heatmap_axis_name_gp internally passed to \code{axis_name_gp} argument of [EnrichedHeatmap::EnrichedHeatmap()].
#' @param heatmap_border internally passed to \code{border} argument of [EnrichedHeatmap::EnrichedHeatmap()].
#'
#' @param ... Other arguments passed to \code{...} argument of [EnrichedHeatmap::EnrichedHeatmap()].
#' @return a HeatmapList.
#' @export
#'
Expand All @@ -313,7 +313,8 @@ make_enriched_heatmap_list <- function(x,
heatmap_axis_name= c("-3KB","Summit","+3KB"),
heatmap_axis_name_rot = 0,
heatmap_axis_name_gp = gpar(fontsize = 10),
heatmap_border = TRUE){
heatmap_border = TRUE,
...){


# validate x
Expand Down Expand Up @@ -401,7 +402,7 @@ make_enriched_heatmap_list <- function(x,
pos_line_gp = heatmap_pos_line_gp,
axis_name_rot = heatmap_axis_name_rot,
border = heatmap_border, use_raster = TRUE ,
split = peak_clust$clust))
split = peak_clust$clust,...))



Expand Down
7 changes: 6 additions & 1 deletion docs/reference/make_enriched_heatmap_list.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion man/make_enriched_heatmap_list.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b455d80

Please sign in to comment.