Skip to content
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
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: miaViz
Title: Microbiome Analysis Plotting and Visualization
Version: 1.21.3
Version: 1.21.4
Authors@R:
c(person(given = "Tuomas", family = "Borman", role = c("aut", "cre"),
email = "tuomas.v.borman@utu.fi",
Expand Down
5 changes: 5 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export(plotColTile)
export(plotDMNFit)
export(plotFeaturePrevalence)
export(plotForest)
export(plotHeatmap)
export(plotHistogram)
export(plotJointRPCA)
export(plotLoadings)
Expand Down Expand Up @@ -40,6 +41,7 @@ exportMethods(plotColTree)
exportMethods(plotDMNFit)
exportMethods(plotFeaturePrevalence)
exportMethods(plotForest)
exportMethods(plotHeatmap)
exportMethods(plotHistogram)
exportMethods(plotJointRPCA)
exportMethods(plotLoadings)
Expand Down Expand Up @@ -122,8 +124,10 @@ importFrom(ggplot2,annotate)
importFrom(ggplot2,coord_cartesian)
importFrom(ggplot2,coord_flip)
importFrom(ggplot2,element_blank)
importFrom(ggplot2,element_rect)
importFrom(ggplot2,element_text)
importFrom(ggplot2,expansion)
importFrom(ggplot2,facet_grid)
importFrom(ggplot2,facet_wrap)
importFrom(ggplot2,geom_bar)
importFrom(ggplot2,geom_errorbar)
Expand Down Expand Up @@ -152,6 +156,7 @@ importFrom(ggplot2,scale_y_discrete)
importFrom(ggplot2,theme)
importFrom(ggplot2,theme_bw)
importFrom(ggplot2,theme_classic)
importFrom(ggplot2,theme_minimal)
importFrom(ggrepel,geom_label_repel)
importFrom(ggrepel,geom_text_repel)
importFrom(ggtree,geom_cladelab)
Expand Down
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ Changes in version 1.19.x

Changes in version 1.21.x
+ Added plotOrdination and plotJointRPCA (2026-08-04)
+ Added plotHeatmap (2026-08-10)
5 changes: 5 additions & 0 deletions R/AllGenerics.R
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# All generic methods are listed here

#' @rdname getNeatOrder
setGeneric("getNeatOrder", signature = c("x"),

Check warning on line 4 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Variable and function name style should match snake_case or symbols.
function(x, centering = "mean", ...)

Check warning on line 5 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Wrap multi-line function bodies in curly braces.

Check warning on line 5 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Hanging indent should be 11 spaces but is 4 spaces.
standardGeneric("getNeatOrder"))

Check warning on line 6 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Indentation should be 13 spaces but is 4 spaces.

#' @rdname plotAbundance
setGeneric("plotAbundance", signature = c("x"), function(x, ...)

Check warning on line 9 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Wrap multi-line function bodies in curly braces.

Check warning on line 9 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Variable and function name style should match snake_case or symbols.
standardGeneric("plotAbundance"))

Check warning on line 10 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Indentation should be 13 spaces but is 4 spaces.

#' @rdname plotAbundanceDensity
#' @export
setGeneric("plotAbundanceDensity", signature = c("x"), function(x, ...)

Check warning on line 14 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Wrap multi-line function bodies in curly braces.

Check warning on line 14 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Variable and function name style should match snake_case or symbols.
standardGeneric("plotAbundanceDensity"))

Check warning on line 15 in R/AllGenerics.R

View workflow job for this annotation

GitHub Actions / ubuntu-latest (auto)

[lintr] Indentation should be 13 spaces but is 4 spaces.

#' @rdname plotCCA
#' @aliases plotRDA
Expand Down Expand Up @@ -166,3 +166,8 @@
#' @export
setGeneric("plotJointRPCA", signature = c("x"), function(x, ...)
standardGeneric("plotJointRPCA"))

#' @rdname plotHeatmap
#' @export
setGeneric("plotHeatmap", signature = c("x"), function(x, ...)
standardGeneric("plotHeatmap"))
Loading
Loading