Skip to contents

Alias for install_artaverse(). Installs the complete Artalytics platform including all core and optionally extended packages.

Usage

install_platform(
  include_extended = getOption("artaverse.install_extended", FALSE),
  installer = NULL
)

Arguments

include_extended

Logical. If TRUE, install extended packages in addition to core packages. Can also be controlled via getOption("artaverse.install_extended", FALSE).

installer

Function to use for installation. Defaults to pak::pkg_install. Provide a custom function for testing or alternative installation methods.

Value

Invisibly returns a character vector of package references installed.

Examples

if (FALSE) { # \dontrun{
# Install complete platform
install_platform(include_extended = TRUE)
} # }