Skip to content

Commit a065fad

Browse files
committed
Adapted
1 parent a1c747e commit a065fad

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,6 @@ VignetteBuilder:
7272
knitr
7373
Encoding: UTF-8
7474
LazyData: true
75+
NeedsCompilation: no
7576
Roxygen: list(markdown = TRUE)
7677
RoxygenNote: 7.3.2

NEWS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# UCSCXenaShiny 2.2.0
22

3+
- Adapted `interleave()`.
34
- Added gene and pathway cross-omics analysis functions/modules.
45
- Added `app_run2()` function for custom app start with lightweight modules.
56
- Fixed `pdf()` parameter for KM plot

R/GeomSplitViolin.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GeomSplitViolin <- ggproto("GeomSplitViolin", GeomViolin,
2323
)
2424
# Visualize Violin plot
2525
create_quantile_segment_frame <- function(data, draw_quantiles, split = FALSE, grp = NULL) {
26-
interleave <- "ggplot2" %:::% "interleave"
26+
interleave <- "vctrs" %:::% "vec_interleave"
2727
dens <- cumsum(data$density) / sum(data$density)
2828
suppressWarnings(ecdf <- stats::approxfun(dens, data$y))
2929
ys <- ecdf(draw_quantiles)

man/vis_identifier_grp_comparison.Rd

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)