Skip to content

Commit c2698ea

Browse files
committed
Bump version and add new panel checks
1 parent 32b9e30 commit c2698ea

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: iSEEtree
2-
Version: 1.2.0
2+
Version: 1.1.3
33
Authors@R:
44
c(person(given = "Giulio", family = "Benedetti", role = c("aut", "cre"),
55
email = "giulio.benedetti@utu.fi",
@@ -44,7 +44,6 @@ Suggests:
4444
biomformat,
4545
BiocStyle,
4646
knitr,
47-
MGnifyR,
4847
RefManageR,
4948
remotes,
5049
rmarkdown,

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ importFrom(SummarizedExperiment,assayNames)
3232
importFrom(SummarizedExperiment,colData)
3333
importFrom(SummarizedExperiment,rowData)
3434
importFrom(TreeSummarizedExperiment,TreeSummarizedExperiment)
35+
importFrom(TreeSummarizedExperiment,colLinks)
3536
importFrom(TreeSummarizedExperiment,colTree)
3637
importFrom(TreeSummarizedExperiment,rowLinks)
3738
importFrom(TreeSummarizedExperiment,rowTree)

NEWS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Changes in version 0.99.X
1313
Changes in version 1.1.X
1414
* Updated .multiSelectionResponsive
1515
* Conformed to iSEE v2.19.2
16-
17-
Changes in version 1.2.X
1816
* Created TreePlot family
1917
* Added typical tree operations
2018
* Created GraphPlot family

R/iSEE-default.R

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ setGeneric("iSEE", iSEE::iSEE)
5252
#' @importFrom iSEE createLandingPage ExperimentColorMap ReducedDimensionPlot
5353
#' ComplexHeatmapPlot RowDataTable ColumnDataTable
5454
#' @importFrom TreeSummarizedExperiment TreeSummarizedExperiment rowLinks
55+
#' colLinks
5556
#' @importFrom SingleCellExperiment reducedDims
57+
#' @importFrom S4Vectors metadata
5658
#' @importFrom SummarizedExperiment rowData colData
5759
#' @importFrom mia taxonomyRanks
5860
setMethod("iSEE", "TreeSummarizedExperiment",
@@ -65,8 +67,14 @@ setMethod("iSEE", "TreeSummarizedExperiment",
6567
initial <- .check_panel(se, initial, "RowDataTable", rowData)
6668
initial <- .check_panel(se, initial, "ColumnDataTable", colData)
6769
initial <- .check_panel(se, initial, "RowTreePlot", rowLinks)
70+
initial <- .check_panel(se, initial, "ColumnTreePlot", colLinks)
6871
initial <- .check_panel(se, initial, "AbundancePlot", taxonomyRanks)
6972
initial <- .check_panel(se, initial, "ReducedDimensionPlot", reducedDims)
73+
initial <- .check_panel(se, initial, "LoadingPlot", reducedDims)
74+
initial <- .check_panel(se, initial, "ScreePlot", reducedDims)
75+
initial <- .check_panel(se, initial, "RDAPlot", reducedDims)
76+
initial <- .check_panel(se, initial, "RowGraphPlot", metadata)
77+
initial <- .check_panel(se, initial, "ColumnGraphPlot", metadata)
7078

7179
iSEE::iSEE(se, initial = initial, extra = initial, colormap = colormap,
7280
landingPage = landingPage, tour = tour, appTitle = appTitle,

0 commit comments

Comments
 (0)