Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
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-xx)
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