Skip to contents

Install with Bioconda Lifecycle: stable

Toolkit for extending the functionality of R Markdown.

Installation

This is an R package.

install.packages(
    pkgs = "AcidMarkdown",
    repos = c(
        "https://r.acidgenomics.com",
        getOption("repos")
    ),
    dependencies = TRUE
)

Conda method

Configure conda to use the bioconda channels.

# Don't install recipe into base environment.
name='r-acidmarkdown'
conda create --name="$name" "$name"
conda activate "$name"
R