Skip to content

Commit

Permalink
Fix r cmd check warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
RiboRings committed Apr 19, 2024
1 parent f998faa commit 143f246
Show file tree
Hide file tree
Showing 15 changed files with 51 additions and 50 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
^_pkgdown\.yml$
^docs$
^pkgdown$
.github
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ Imports:
methods,
S4Vectors
Suggests:
mia
mia,
vegan
URL: https://github.com/RiboRings/iSEEtree
BugReports: https://github.com/RiboRings/iSEEtree/issues
Roxygen: list(markdown = TRUE)
Expand Down
8 changes: 4 additions & 4 deletions R/class-AbundanceDensityPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
#' tse <- GlobalPatterns
#'
#' # Agglomerate TreeSE by Genus
#' tse_genus <- mergeFeaturesByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#' tse_genus <- agglomerateByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#'
#' # Add relabundance assay
#' tse_genus <- transformAssay(tse_genus, method = "relabundance")
Expand All @@ -39,7 +39,7 @@
#' iSEE(tse_genus)
#' }
#'
#' @name AbundanceDensityPlot-class
#' @name AbundanceDensityPlot
NULL

#' @export
Expand Down
8 changes: 4 additions & 4 deletions R/class-AbundancePlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
#' tse <- GlobalPatterns
#'
#' # Agglomerate TreeSE by Genus
#' tse_genus <- mergeFeaturesByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#' tse_genus <- agglomerateByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#'
#' # Launch iSEE
#' if (interactive()) {
#' iSEE(tse_genus)
#' }
#'
#' @name AbundancePlot-class
#' @name AbundancePlot
NULL

#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/class-RDAPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#' iSEE(tse, initial = c(RDAPlot()))
#' }
#'
#' @name RDAPlot-class
#' @name RDAPlot
NULL

setClassUnion("charlog", c("character", "logical"))
Expand Down
8 changes: 4 additions & 4 deletions R/class-RowTreePlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@
#' tse <- GlobalPatterns
#'
#' # Agglomerate TreeSE by Genus
#' tse_genus <- mergeFeaturesByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#' tse_genus <- agglomerateByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#'
#' # Launch iSEE
#' if (interactive()) {
#' iSEE(tse_genus)
#' }
#'
#' @name RowTreePlot-class
#' @name RowTreePlot
NULL

#' @export
Expand Down
8 changes: 4 additions & 4 deletions R/iSEE-default.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
#' tse <- GlobalPatterns
#'
#' # Agglomerate TreeSE by Genus
#' tse_genus <- mergeFeaturesByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#' tse_genus <- agglomerateByRank(tse,
#' rank = "Genus",
#' onRankOnly = TRUE)
#'
#' # Add relabundance assay
#' tse_genus <- transformAssay(tse_genus, method = "relabundance")
Expand All @@ -34,7 +34,7 @@
#' iSEE(tse_genus, initial = c(RowTreePlot(), AbundancePlot(), AbundanceDensityPlot()))
#' }
#'
#' @name iSEE-TreeSE
#' @name iSEE
NULL

#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/iSEEtree-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#'
#' @author Giulio Benedetti \email{giulio.benedetti@@utu.fi}
#'
#' @name iSEEtree-pkg
#' @name iSEEtree
#' @docType package
#' @keywords internal
#'
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions man/AbundancePlot-class.Rd → man/AbundancePlot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/RDAPlot-class.Rd → man/RDAPlot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions man/RowTreePlot-class.Rd → man/RowTreePlot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions man/iSEE-TreeSE.Rd → man/iSEE.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions man/iSEEtree-pkg.Rd → man/iSEEtree.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions _pkgdown.yml → pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ destination: docs
reference:
- title: Panels
- contents:
- AbundanceDensityPlot-class
- AbundancePlot-class
- RDAPlot-class
- RowTreePlot-class
- AbundanceDensityPlot
- AbundancePlot
- RDAPlot
- RowTreePlot
- title: Other
- subtitle: Default layout
- contents:
- iSEE-TreeSE
- iSEE
- subtitle: Package
- contents:
- iSEEtree-pkg
- iSEEtree

0 comments on commit 143f246

Please sign in to comment.