Skip to content

Added LoadingPlot and ColumnTreePlot panels #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: iSEEtree
Version: 0.99.7
Version: 0.99.8
Authors@R:
c(person(given = "Giulio", family = "Benedetti", role = c("aut", "cre"),
email = "giulio.benedetti@utu.fi",
Expand All @@ -17,7 +17,7 @@ Description:
visualisation to create panels that are specific for
TreeSummarizedExperiment objects. Not surprisingly, it also depends on the
generic panels from iSEE.
biocViews: Microbiome, Software, Visualization, GUI, ShinyApps
biocViews: Microbiome, Software, Visualization, GUI, ShinyApps, DataImport
License: Artistic-2.0
Encoding: UTF-8
Depends:
Expand Down
7 changes: 7 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@

export(AbundanceDensityPlot)
export(AbundancePlot)
export(ColumnTreePlot)
export(LoadingPlot)
export(RDAPlot)
export(RowTreePlot)
export(iSEE)
exportClasses(AbundanceDensityPlot)
exportClasses(AbundancePlot)
exportClasses(ColumnTreePlot)
exportClasses(LoadingPlot)
exportClasses(RDAPlot)
exportClasses(RowTreePlot)
exportMethods(iSEE)
importFrom(S4Vectors,isEmpty)
importFrom(S4Vectors,setValidity2)
importFrom(SingleCellExperiment,reducedDim)
importFrom(SingleCellExperiment,reducedDimNames)
importFrom(SingleCellExperiment,reducedDims)
importFrom(SummarizedExperiment,assayNames)
Expand Down Expand Up @@ -57,6 +62,8 @@ importFrom(methods,is)
importFrom(methods,new)
importFrom(methods,slot)
importFrom(mia,taxonomyRanks)
importFrom(miaViz,plotColTree)
importFrom(miaViz,plotLoadings)
importFrom(miaViz,plotRowTree)
importFrom(shiny,plotOutput)
importFrom(shiny,renderPlot)
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ Changes in version 0.99.2

Changes in version 0.99.3
* Added .exportOutput method

Changes in version 0.99.8
* Added ColumnTreePlot and LoadingPlot panels
Binary file added R/LoadingPlotNA.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion R/class-AbundanceDensityPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#' to generate the plot.
#'
#' @section Slot overview:
#' The following slots control the thresholds used in the visualization:
#' The following slots control the thresholds used in the visualisation:
#' \itemize{
#' \item \code{layout}, a string specifying abundance layout (jitter, density or points).
#' \item \code{assay.type}, a string specifying the assay to visualize.
Expand Down
Loading
Loading