Skip to content

Commit

Permalink
Merge pull request #37 from microbiome/coltree&loadings
Browse files Browse the repository at this point in the history
Added LoadingPlot and ColumnTreePlot panels
  • Loading branch information
RiboRings authored Oct 16, 2024
2 parents 6914429 + bcf80b0 commit e1ecd98
Show file tree
Hide file tree
Showing 19 changed files with 1,023 additions and 8 deletions.
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 = "[email protected]",
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

0 comments on commit e1ecd98

Please sign in to comment.